org.opends.server.types.operation
Interface PostResponseExtendedOperation

All Superinterfaces:
PluginOperation, PostOperationOperation
All Known Implementing Classes:
ExtendedOperationBasis

@PublicAPI(stability=UNCOMMITTED,
           mayInstantiate=false,
           mayExtend=false,
           mayInvoke=true)
public interface PostResponseExtendedOperation
extends PostOperationOperation

This class defines a set of methods that are available for use by post-response plugins for extended operations. Note that this interface is intended only to define an API for use by plugins and is not intended to be implemented by any custom classes.


Method Summary
 java.lang.String getRequestOID()
          Retrieves the OID for the request associated with this extended operation.
 ASN1OctetString getRequestValue()
          Retrieves the value for the request associated with this extended operation.
 java.lang.String getResponseOID()
          Retrieves the OID to include in the response to the client.
 ASN1OctetString getResponseValue()
          Retrieves the value to include in the response to the client.
 
Methods inherited from interface org.opends.server.types.operation.PostOperationOperation
addResponseControl, appendAdditionalLogMessage, appendErrorMessage, getAdditionalLogMessage, getAuthorizationDN, getErrorMessage, getMatchedDN, getReferralURLs, getResultCode, removeResponseControl, setAdditionalLogMessage, setErrorMessage, setMatchedDN, setReferralURLs, setResponseData, setResultCode
 
Methods inherited from interface org.opends.server.types.operation.PluginOperation
checkIfCanceled, disconnectClient, getAttachment, getAttachments, getClientConnection, getConnectionID, getMessageID, getOperationID, getOperationType, getProcessingStartTime, getRequestControls, getResponseControls, isInternalOperation, isSynchronizationOperation, removeAttachment, setAttachment, toString, toString
 

Method Detail

getRequestOID

java.lang.String getRequestOID()
Retrieves the OID for the request associated with this extended operation.

Returns:
The OID for the request associated with this extended operation.

getRequestValue

ASN1OctetString getRequestValue()
Retrieves the value for the request associated with this extended operation.

Returns:
The value for the request associated with this extended operation.

getResponseOID

java.lang.String getResponseOID()
Retrieves the OID to include in the response to the client.

Returns:
The OID to include in the response to the client.

getResponseValue

ASN1OctetString getResponseValue()
Retrieves the value to include in the response to the client.

Returns:
The value to include in the response to the client.