Interface ConditionalFilters.Condition
-
- Enclosing class:
- ConditionalFilters
public static interface ConditionalFilters.Condition
Condition which have to be fulfilled in order to apply theFilter
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
canApplyFilter(org.forgerock.services.context.Context context, org.forgerock.http.protocol.Request request)
Check if aFilter
must be executed or not.
-
-
-
Method Detail
-
canApplyFilter
boolean canApplyFilter(org.forgerock.services.context.Context context, org.forgerock.http.protocol.Request request)
Check if aFilter
must be executed or not.- Parameters:
context
- CurrentContext
of the request processing.request
- theRequest
currently processed.- Returns:
- true if the filter must be applied.
-
-