c3cac50ebe13fc345d91f2678fa87b5eaae0993c
[sdc.git] /
1 package org.openecomp.sdc.common.togglz;
2
3 import org.togglz.core.Feature;
4 import org.togglz.core.annotation.Label;
5 import org.togglz.core.context.FeatureContext;
6
7 public enum ToggleableFeature implements Feature {
8
9   @Label ("VLAN Tagging")
10   VLAN_TAGGING,
11
12   @Label ("Annotations")
13   ANNOTATIONS;
14
15   public boolean isActive() {
16     return FeatureContext.getFeatureManager().isActive(this);
17   }
18 }