diff options
author | siddharth0905 <siddharth.singh4@amdocs.com> | 2018-08-13 18:45:20 +0530 |
---|---|---|
committer | Avi Gaffa <avi.gaffa@amdocs.com> | 2018-08-13 14:15:29 +0000 |
commit | a290993935a34c3bd3d11e77c103805cff0da388 (patch) | |
tree | b0dc7965d3950d47f1f80919f4eff9ee73769893 /openecomp-be/lib/openecomp-common-lib/src | |
parent | c895a6bda3c85498907d77d0c09e55754b82b382 (diff) |
Appears toggle for MRN in toggle ui
Appears toggle for MRN in toggle ui
Change-Id: I67c9996f256009245a810f359fc5dc2b243d7ec1
Issue-ID: SDC-1642
Signed-off-by: siddharth0905 <siddharth.singh4@amdocs.com>
Diffstat (limited to 'openecomp-be/lib/openecomp-common-lib/src')
-rw-r--r-- | openecomp-be/lib/openecomp-common-lib/src/main/java/org/openecomp/sdc/common/togglz/ToggleableFeature.java | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/openecomp-be/lib/openecomp-common-lib/src/main/java/org/openecomp/sdc/common/togglz/ToggleableFeature.java b/openecomp-be/lib/openecomp-common-lib/src/main/java/org/openecomp/sdc/common/togglz/ToggleableFeature.java index 4eaa8c823d..ab261c9e4b 100644 --- a/openecomp-be/lib/openecomp-common-lib/src/main/java/org/openecomp/sdc/common/togglz/ToggleableFeature.java +++ b/openecomp-be/lib/openecomp-common-lib/src/main/java/org/openecomp/sdc/common/togglz/ToggleableFeature.java @@ -6,13 +6,10 @@ import org.togglz.core.context.FeatureContext; public enum ToggleableFeature implements Feature { - @Label(("MRN")) - MRN, - - @Label("Fabric Configuration") - FABRIC_CONFIGURATION; + @Label("Fabric Configuration") + FABRIC_CONFIGURATION; - public boolean isActive() { - return FeatureContext.getFeatureManager().isActive(this); - } + public boolean isActive() { + return FeatureContext.getFeatureManager().isActive(this); + } } |