Interface InMemoryInterceptedSimpleBindRequest
-
- All Superinterfaces:
InMemoryInterceptedRequest
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface InMemoryInterceptedSimpleBindRequest extends InMemoryInterceptedRequest
This class provides an API that can be used in the course of processing a simple bind request via theInMemoryOperationInterceptor
API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SimpleBindRequest
getRequest()
Retrieves the bind request to be processed.void
setRequest(SimpleBindRequest bindRequest)
Replaces the bind request to be processed.-
Methods inherited from interface com.unboundid.ldap.listener.interceptor.InMemoryInterceptedRequest
getConnectedAddress, getConnectedPort, getConnectionID, getMessageID, getProperty, sendIntermediateResponse, sendUnsolicitedNotification, setProperty
-
-
-
-
Method Detail
-
getRequest
@NotNull SimpleBindRequest getRequest()
Retrieves the bind request to be processed.- Returns:
- The bind request to be processed.
-
setRequest
void setRequest(@NotNull SimpleBindRequest bindRequest)
Replaces the bind request to be processed.- Parameters:
bindRequest
- The bind request that should be processed instead of the one that was originally received from the client. It must not benull
.
-
-