Package | Description |
---|---|
org.forgerock.json.resource |
Classes and interfaces for core types including connections, request
handlers, resources, and their exceptions.
|
Modifier and Type | Method and Description |
---|---|
static FilterCondition |
Filters.and(Collection<FilterCondition> conditions)
Returns a
FilterCondition which will only match requests which
match all the provided conditions. |
static FilterCondition |
Filters.and(FilterCondition... conditions)
Returns a
FilterCondition which will only match requests which
match all the provided conditions. |
static FilterCondition |
Filters.matchRequestType(RequestType... types)
Returns a
FilterCondition which will only match requests whose
type is contained in types . |
static FilterCondition |
Filters.matchRequestType(Set<RequestType> types)
Returns a
FilterCondition which will only match requests whose
type is contained in types . |
static FilterCondition |
Filters.matchResourcePath(Pattern regex)
Returns a
FilterCondition which will only match requests whose
resource path matches the provided regular expression. |
static FilterCondition |
Filters.matchResourcePath(String regex)
Returns a
FilterCondition which will only match requests whose
resource path matches the provided regular expression. |
static FilterCondition |
Filters.not(FilterCondition condition)
Returns a
FilterCondition which will match requests which do not
match the provided condition. |
static FilterCondition |
Filters.or(Collection<FilterCondition> conditions)
Returns a
FilterCondition which will match requests which match
any of the provided conditions. |
static FilterCondition |
Filters.or(FilterCondition... conditions)
Returns a
FilterCondition which will match requests which match
any of the provided conditions. |
Modifier and Type | Method and Description |
---|---|
static FilterCondition |
Filters.and(FilterCondition... conditions)
Returns a
FilterCondition which will only match requests which
match all the provided conditions. |
static Filter |
Filters.conditionalFilter(FilterCondition condition,
Filter subFilter)
Returns a
Filter which will only invoke subFilter when
the provided filter condition matches the request being processed. |
static FilterCondition |
Filters.not(FilterCondition condition)
Returns a
FilterCondition which will match requests which do not
match the provided condition. |
static FilterCondition |
Filters.or(FilterCondition... conditions)
Returns a
FilterCondition which will match requests which match
any of the provided conditions. |
Modifier and Type | Method and Description |
---|---|
static FilterCondition |
Filters.and(Collection<FilterCondition> conditions)
Returns a
FilterCondition which will only match requests which
match all the provided conditions. |
static FilterCondition |
Filters.or(Collection<FilterCondition> conditions)
Returns a
FilterCondition which will match requests which match
any of the provided conditions. |
Copyright 2010-2020 ForgeRock AS.