Uses of Interface
org.opends.server.api.RequestFilter
-
Packages that use RequestFilter Package Description org.forgerock.opendj.server.core Classes implementing core server APIs.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.authorization.policy Contains the policy based access control handler implementation.org.opends.server.loggers Contains implementations of Directory Server access, error, and debug loggers.org.opends.server.protocols.ldap Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using LDAPv3. -
-
Uses of RequestFilter in org.forgerock.opendj.server.core
Classes in org.forgerock.opendj.server.core that implement RequestFilter Modifier and Type Class Description class
AddBinaryOptionReactiveFilter
Adds the "binary" option to attribute descriptions for which the syntax requires BER encoding. -
Uses of RequestFilter in org.opends.server.api
Classes in org.opends.server.api that implement RequestFilter Modifier and Type Class Description class
ClientSideResultCodeRequestFilter
A request filter that filters out client-side result codes in responses, because they should never be transferred over protocol.class
RequestFilterChain
Filters and/or transforms the request and/or response of an LDAP exchange, multiple filters version.class
TypedProtocolOpFilter
Base class for implementingRequestFilter
s whose behavior depends on the type ofRequest
andResponse
.class
TypedRequestFilter
Base class for implementingRequestFilter
s whose behavior depends on the type ofRequest
.Methods in org.opends.server.api with parameters of type RequestFilter Modifier and Type Method Description static RequestFilterChain
RequestFilterChain. filterChain(RequestFilter filter)
Returns a new filter chain containing the single provided filter.RequestFilterChain
RequestFilterChain. then(RequestFilter next)
Concatenate a transformer filter to this filter.RequestFilterChain
RequestFilterChain. thenMaybe(boolean condition, RequestFilter next)
Optionally concatenate a new filter to this filter. -
Uses of RequestFilter in org.opends.server.authorization.policy
Classes in org.opends.server.authorization.policy that implement RequestFilter Modifier and Type Class Description class
PolicyBasedAccessControlHandler
Provides coarse grained access control for all operations, regardless of whether they are destined for local or proxy backends.class
PolicyBasedAccessControlRequestFilter
A singletonRequestFilter
which is always present in the global router and is responsible for delegating access control decisions to the policy based access control handler,PolicyBasedAccessControlHandler
, if enabled, or simply forwarding requests if the handler is disabled. -
Uses of RequestFilter in org.opends.server.loggers
Classes in org.opends.server.loggers that implement RequestFilter Modifier and Type Class Description class
ReactiveFilterAccessLog
Implements Access Logging as a Reactive Filter. -
Uses of RequestFilter in org.opends.server.protocols.ldap
Classes in org.opends.server.protocols.ldap that implement RequestFilter Modifier and Type Class Description class
LdapStatisticsFilter
Reactive Filter collecting request statistics forcn=monitor
reports.
-