diff options
Diffstat (limited to 'api-active-standby-management/src')
-rw-r--r-- | api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureApiConstants.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureApiConstants.java b/api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureApiConstants.java index 48f41a68..9047739c 100644 --- a/api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureApiConstants.java +++ b/api-active-standby-management/src/main/java/org/onap/policy/drools/activestandby/ActiveStandbyFeatureApiConstants.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * api-active-standby-management * ================================================================================ - * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,10 +20,13 @@ package org.onap.policy.drools.activestandby; +import lombok.AccessLevel; import lombok.Getter; +import lombok.NoArgsConstructor; import org.onap.policy.common.utils.services.OrderedServiceImpl; -public class ActiveStandbyFeatureApiConstants { +@NoArgsConstructor(access = AccessLevel.PRIVATE) +public final class ActiveStandbyFeatureApiConstants { /** * 'FeatureAPI.impl.getList()' returns an ordered list of objects implementing the 'FeatureAPI' * interface. @@ -31,8 +34,4 @@ public class ActiveStandbyFeatureApiConstants { @Getter private static final OrderedServiceImpl<ActiveStandbyFeatureApi> impl = new OrderedServiceImpl<>(ActiveStandbyFeatureApi.class); - - private ActiveStandbyFeatureApiConstants() { - // do nothing - } } |