Interface FeatureService
- 
- All Known Implementing Classes:
 PluginModuleFeatureService
@Deprecated public interface FeatureService
Deprecated.since 8.3 unused, no replacementProvides registered Features.- Since:
 - 5.3
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description Set<String>getRegisteredFeatures()Deprecated.default voidverifyFeature(String featureKey)Deprecated.Verify that a featureKey is registereddefault voidverifyFeatures(Set<String> featureKeys)Deprecated.Verify that all keys in a set are registered. 
 - 
 
- 
- 
Method Detail
- 
getRegisteredFeatures
Set<String> getRegisteredFeatures()
Deprecated.- Returns:
 - a collection of features known to the system.
 
 
- 
verifyFeature
default void verifyFeature(String featureKey) throws UnknownFeatureException
Deprecated.Verify that a featureKey is registered- Parameters:
 featureKey-- Throws:
 UnknownFeatureException
 
- 
verifyFeatures
default void verifyFeatures(Set<String> featureKeys) throws UnknownFeatureException
Deprecated.Verify that all keys in a set are registered. Used temporarily for auditing existing use of Dark Features.- Parameters:
 featureKeys-- Throws:
 UnknownFeatureException
 
 - 
 
 -