com.mageddo.togglefirst.FeatureKeys Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toggle-first-core Show documentation
Show all versions of toggle-first-core Show documentation
Enable and disable your features in production on a button click
package com.mageddo.togglefirst;
import com.mageddo.togglefirst.activation.ActivationStrategy;
public final class FeatureKeys {
/**
* Value stored at the feature used to general purpose
*/
public static final String VALUE = "value";
/**
* The current status
* @see Status
*/
public static final String STATUS = "status";
/**
* All activation strategies used determine if feature is active or not
*
* @see ActivationStrategy
*/
public static final String ACTIVATION_STRATEGIES = "activationStrategies";
}