Uses of Interface
org.forgerock.json.resource.FilterCondition
Packages that use FilterCondition
Package
Description
Classes and interfaces for core types including connections, request
handlers, resources, and their exceptions.
-
Uses of FilterCondition in org.forgerock.json.resource
Methods in org.forgerock.json.resource that return FilterConditionModifier and TypeMethodDescriptionstatic FilterCondition
Filters.and
(Collection<FilterCondition> conditions) Returns aFilterCondition
which will only match requests which match all the provided conditions.static FilterCondition
Filters.and
(FilterCondition... conditions) Returns aFilterCondition
which will only match requests which match all the provided conditions.static FilterCondition
Filters.matchRequestType
(Set<RequestType> types) Returns aFilterCondition
which will only match requests whose type is contained intypes
.static FilterCondition
Filters.matchRequestType
(RequestType... types) Returns aFilterCondition
which will only match requests whose type is contained intypes
.static FilterCondition
Filters.matchResourcePath
(String regex) Returns aFilterCondition
which will only match requests whose resource path matches the provided regular expression.static FilterCondition
Filters.matchResourcePath
(Pattern regex) Returns aFilterCondition
which will only match requests whose resource path matches the provided regular expression.static FilterCondition
Filters.not
(FilterCondition condition) Returns aFilterCondition
which will match requests which do not match the provided condition.static FilterCondition
Filters.or
(Collection<FilterCondition> conditions) Returns aFilterCondition
which will match requests which match any of the provided conditions.static FilterCondition
Filters.or
(FilterCondition... conditions) Returns aFilterCondition
which will match requests which match any of the provided conditions.Methods in org.forgerock.json.resource with parameters of type FilterConditionModifier and TypeMethodDescriptionstatic FilterCondition
Filters.and
(FilterCondition... conditions) Returns aFilterCondition
which will only match requests which match all the provided conditions.static Filter
Filters.conditionalFilter
(FilterCondition condition, Filter subFilter) Returns aFilter
which will only invokesubFilter
when the provided filter condition matches the request being processed.static FilterCondition
Filters.not
(FilterCondition condition) Returns aFilterCondition
which will match requests which do not match the provided condition.static FilterCondition
Filters.or
(FilterCondition... conditions) Returns aFilterCondition
which will match requests which match any of the provided conditions.Method parameters in org.forgerock.json.resource with type arguments of type FilterConditionModifier and TypeMethodDescriptionstatic FilterCondition
Filters.and
(Collection<FilterCondition> conditions) Returns aFilterCondition
which will only match requests which match all the provided conditions.static FilterCondition
Filters.or
(Collection<FilterCondition> conditions) Returns aFilterCondition
which will match requests which match any of the provided conditions.