com.unboundid.ldap.listener.interceptor
Interface InMemoryInterceptedModifyDNRequest

All Superinterfaces:
InMemoryInterceptedRequest

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

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


Method Summary
 ReadOnlyModifyDNRequest getRequest()
          Retrieves the modify DN request to be processed.
 void setRequest(ModifyDNRequest modifyDNRequest)
          Replaces the modifyDN 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

ReadOnlyModifyDNRequest getRequest()
Retrieves the modify DN request to be processed.

Returns:
The modify DN request to be processed.

setRequest

void setRequest(ModifyDNRequest modifyDNRequest)
Replaces the modifyDN request to be processed.

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