summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-common-lib/src/main/java/org/openecomp/sdc/common/togglz/ToggleableFeature.java
blob: cae1033b52e2bb1feace5aacd17ecce498fa08b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.openecomp.sdc.common.togglz;

import org.togglz.core.annotation.Label;
import org.togglz.core.context.FeatureContext;

public enum ToggleableFeature implements ToggleStatus {

  @Label ("Forwarder Capability")
  FORWARDER_CAPABILITY;

  @Override
  public boolean isActive() {
    return FeatureContext.getFeatureManager().isActive(this);
  }
}