com.unboundid.ldap.listener.interceptor
Interface InMemoryInterceptedModifyRequest

All Superinterfaces:
InMemoryInterceptedRequest

@NotExtensible
@ThreadSafety(level=INTERFACE_NOT_THREADSAFE)
public interface InMemoryInterceptedModifyRequest
extends InMemoryInterceptedRequest

This class provides an API that can be used in the course of processing a modify request via the InMemoryOperationInterceptor API.


Method Summary
 ReadOnlyModifyRequest getRequest()
          Retrieves the modify request to be processed.
 void setRequest(ModifyRequest modifyRequest)
          Replaces the modify 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

ReadOnlyModifyRequest getRequest()
Retrieves the modify request to be processed.

Returns:
The modify request to be processed.

setRequest

void setRequest(ModifyRequest modifyRequest)
Replaces the modify request to be processed.

Parameters:
modifyRequest - The modify request that should be processed instead of the one that was originally received from the client. It must not be null.