com.unboundid.ldap.listener.interceptor
Interface InMemoryInterceptedSASLBindResult

All Superinterfaces:
InMemoryInterceptedResult

@NotExtensible
@ThreadSafety(level=INTERFACE_NOT_THREADSAFE)
public interface InMemoryInterceptedSASLBindResult
extends InMemoryInterceptedResult

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


Method Summary
 GenericSASLBindRequest getRequest()
          Retrieves the SASL bind request that was processed.
 BindResult getResult()
          Retrieves the bind result to be returned to the client.
 void sendIntermediateResponse(IntermediateResponse intermediateResponse)
          Sends the provided intermediate response message to the client.
 void setResult(BindResult bindResult)
          Replaces the bind result to be returned to the client.
 
Methods inherited from interface com.unboundid.ldap.listener.interceptor.InMemoryInterceptedResult
getConnectedAddress, getConnectedPort, getConnectionID, getMessageID, getProperty, sendUnsolicitedNotification
 

Method Detail

getRequest

GenericSASLBindRequest getRequest()
Retrieves the SASL bind request that was processed. If the request was altered between the time it was received from the client and the time it was actually processed by the in-memory directory server, then this will be the most recently altered version.

Returns:
The SASL bind request that was processed.

getResult

BindResult getResult()
Retrieves the bind result to be returned to the client.

Returns:
The bind result to be returned to the client.

setResult

void setResult(BindResult bindResult)
Replaces the bind result to be returned to the client.

Parameters:
bindResult - The bind result that should be returned to the client instead of the result originally generated by the in-memory directory server. It must not be null.

sendIntermediateResponse

void sendIntermediateResponse(IntermediateResponse intermediateResponse)
                              throws LDAPException
Sends the provided intermediate response message to the client. It will be processed by the InMemoryOperationInterceptor.processIntermediateResponse(com.unboundid.ldap.listener.interceptor.InMemoryInterceptedIntermediateResponse) method of all registered operation interceptors.

Parameters:
intermediateResponse - The intermediate response to send to the client. It must not be null.
Throws:
LDAPException - If a problem is encountered while trying to send the intermediate response.