com.unboundid.ldap.listener.interceptor
Interface InMemoryInterceptedAddRequest

All Superinterfaces:
InMemoryInterceptedRequest

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

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


Method Summary
 ReadOnlyAddRequest getRequest()
          Retrieves the add request to be processed.
 void setRequest(AddRequest addRequest)
          Replaces the add 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

ReadOnlyAddRequest getRequest()
Retrieves the add request to be processed.

Returns:
The add request to be processed.

setRequest

void setRequest(AddRequest addRequest)
Replaces the add request to be processed.

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