Interface InMemoryInterceptedCompareRequest
-
- All Superinterfaces:
InMemoryInterceptedRequest
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface InMemoryInterceptedCompareRequest extends InMemoryInterceptedRequest
This class provides an API that can be used in the course of processing a compare request via theInMemoryOperationInterceptorAPI.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReadOnlyCompareRequestgetRequest()Retrieves the compare request to be processed.voidsetRequest(CompareRequest compareRequest)Replaces the compare 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
ReadOnlyCompareRequest getRequest()
Retrieves the compare request to be processed.- Returns:
- The compare request to be processed.
-
setRequest
void setRequest(CompareRequest compareRequest)
Replaces the compare request to be processed.- Parameters:
compareRequest- The compare request that should be processed instead of the one that was originally received from the client. It must not benull.
-
-