com.mageddo.togglefirst.FeatureMetadataProvider 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.repository.FeatureRepository;
/**
* Used to retrieve feature metadata when it is not found at the {@link FeatureRepository}
*/
public interface FeatureMetadataProvider {
FeatureMetadata getMetadata(Feature feature);
}