Interface PostOperationExtendedOperation
-
- All Superinterfaces:
PluginOperation
,PostOperationOperation
- All Known Implementing Classes:
ExtendedOperation
@PublicAPI(stability=UNCOMMITTED, mayInstantiate=false, mayExtend=false, mayInvoke=true) public interface PostOperationExtendedOperation extends PostOperationOperation
This class defines a set of methods that are available for use by post-operation 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getRequestOID()
Retrieves the OID for the request associated with this extended operation.ByteString
getRequestValue()
Retrieves the value for the request associated with this extended operation.String
getResponseOID()
Retrieves the OID to include in the response to the client.ByteString
getResponseValue()
Retrieves the value to include in the response to the client.void
setResponseOID(String responseOID)
Specifies the OID to include in the response to the client.void
setResponseValue(ByteString responseValue)
Specifies the value to include in the response to the client.-
Methods inherited from interface org.opends.server.types.operation.PluginOperation
checkIfCanceled, disconnectClient, getAttachment, getAttachments, getClientConnection, getConnectionID, getMessageID, getOperationID, getOperationType, getRequestControl, getRequestControl, getRequestControls, getResponseControls, isInternalOperation, isSynchronizationOperation, removeAttachment, setAttachment, toString, toString
-
Methods inherited from interface org.opends.server.types.operation.PostOperationOperation
addAdditionalLogItem, addResponseControl, appendErrorMessage, getAdditionalLogItems, getAuthorizationDN, getErrorMessage, getMatchedDN, getReferralURLs, getResultCode, removeResponseControl, setErrorMessage, setMatchedDN, setReferralURLs, setResult, setResultCode
-
-
-
-
Method Detail
-
getRequestOID
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
ByteString getRequestValue()
Retrieves the value for the request associated with this extended operation.- Returns:
- The value for the request associated with this extended operation.
-
getResponseOID
String getResponseOID()
Retrieves the OID to include in the response to the client.- Returns:
- The OID to include in the response to the client.
-
setResponseOID
void setResponseOID(String responseOID)
Specifies the OID to include in the response to the client.- Parameters:
responseOID
- The OID to include in the response to the client.
-
getResponseValue
ByteString getResponseValue()
Retrieves the value to include in the response to the client.- Returns:
- The value to include in the response to the client.
-
setResponseValue
void setResponseValue(ByteString responseValue)
Specifies the value to include in the response to the client.- Parameters:
responseValue
- The value to include in the response to the client.
-
-