Class AlwaysOnFilter
- java.lang.Object
-
- com.azure.spring.cloud.feature.manager.feature.filters.AlwaysOnFilter
-
- All Implemented Interfaces:
FeatureFilter
public class AlwaysOnFilter extends Object implements FeatureFilter
A filter that always returns true
-
-
Constructor Summary
Constructors Constructor Description AlwaysOnFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanevaluate(FeatureFilterEvaluationContext context)Evaluates if the filter is on or off.
-
-
-
Method Detail
-
evaluate
public boolean evaluate(FeatureFilterEvaluationContext context)
Description copied from interface:FeatureFilterEvaluates if the filter is on or off. Returning true results in Feature evaluation ending and returning true. Returning false results in the next Feature evaluation to continue.- Specified by:
evaluatein interfaceFeatureFilter- Parameters:
context- The context for whether or not the filter is passed.- Returns:
- True if the feature is enabled, false otherwise.
-
-