com.unboundid.ldap.listener.interceptor
Interface InMemoryInterceptedExtendedRequest

All Superinterfaces:
InMemoryInterceptedRequest

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

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


Method Summary
 ExtendedRequest getRequest()
          Retrieves the extended request to be processed.
 void setRequest(ExtendedRequest extendedRequest)
          Replaces the extended 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

ExtendedRequest getRequest()
Retrieves the extended request to be processed.

Returns:
The extended request to be processed.

setRequest

void setRequest(ExtendedRequest extendedRequest)
Replaces the extended request to be processed.

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