diff options
author | Jim Hahn <jrh3@att.com> | 2019-07-10 15:42:40 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-07-17 08:53:11 -0400 |
commit | 6dee9fba7e3c471bab358d8567a9e3e0a3fca769 (patch) | |
tree | a51ebc52fdeed43f678b085234869dadf8902c33 /api-active-standby-management/src/main/java/org | |
parent | 254e206198b72376ca31fe5950b805335a4376b4 (diff) |
Fix checkstyle issues in api-active-standby-management
Also deleted the checkstyle suppression file.
Change-Id: I3518f29c75061dced8f507b274388f7588859037
Issue-ID: POLICY-1901
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'api-active-standby-management/src/main/java/org')
-rw-r--r-- | api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureApi.java (renamed from api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureAPI.java) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureAPI.java b/api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureApi.java index 5f99e6bb..8637fa5c 100644 --- a/api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureAPI.java +++ b/api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureApi.java @@ -28,13 +28,13 @@ import org.onap.policy.common.utils.services.OrderedServiceImpl; * appropriate points in the application, the code iterates through this list, invoking these * optional methods. */ -public interface ActiveStandbyFeatureAPI extends OrderedService { +public interface ActiveStandbyFeatureApi extends OrderedService { /** * 'FeatureAPI.impl.getList()' returns an ordered list of objects implementing the 'FeatureAPI' * interface. */ - public static OrderedServiceImpl<ActiveStandbyFeatureAPI> impl = - new OrderedServiceImpl<>(ActiveStandbyFeatureAPI.class); + public static OrderedServiceImpl<ActiveStandbyFeatureApi> impl = + new OrderedServiceImpl<>(ActiveStandbyFeatureApi.class); /** * Returns the resourceName (PDP ID) for the Drools-PDP that is |