com.mageddo.togglefirst.Feature 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;
/**
* Represents a feature, you can create a feature defining a unique name.
*
* You can check if this feature is active, metadata, etc. using {@link FeatureManager}
*
* @see BasicFeature
* @see InteractiveFeature
* @see FeatureManager
*/
public interface Feature {
String name();
}