com.unboundid.ldap.listener.interceptor
Interface InMemoryInterceptedDeleteRequest

All Superinterfaces:
InMemoryInterceptedRequest

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

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


Method Summary
 ReadOnlyDeleteRequest getRequest()
          Retrieves the delete request to be processed.
 void setRequest(DeleteRequest deleteRequest)
          Replaces the delete 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

ReadOnlyDeleteRequest getRequest()
Retrieves the delete request to be processed.

Returns:
The delete request to be processed.

setRequest

void setRequest(DeleteRequest deleteRequest)
Replaces the delete request to be processed.

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