de.otto.edison.togglz.FeatureClassProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edison-togglz Show documentation
Show all versions of edison-togglz Show documentation
Feature toggles for Edison Microservices.
package de.otto.edison.togglz;
import org.togglz.core.Feature;
/**
* Implement this interface as a spring bean to expose Your Feature enum to the TogglzConfiguration.
*/
public interface FeatureClassProvider {
Class extends Feature> getFeatureClass();
}