org.opends.server.types.operation
Interface PostOperationCompareOperation

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

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

This class defines a set of methods that are available for use by post-operation plugins for compare 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
 ByteString getAssertionValue()
          Retrieves the assertion value for this compare operation.
 AttributeType getAttributeType()
          Retrieves the attribute type for this compare operation.
 DN getEntryDN()
          Retrieves the DN of the entry to compare.
 Entry getEntryToCompare()
          Retrieves the entry to target with the compare operation.
 java.lang.String getRawAttributeType()
          Retrieves the raw attribute type for this compare operation.
 ByteString getRawEntryDN()
          Retrieves the raw, unprocessed entry DN as included in the client request.
 
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

getRawEntryDN

ByteString getRawEntryDN()
Retrieves the raw, unprocessed entry DN as included in the client request.

Returns:
The raw, unprocessed entry DN as included in the client request.

getEntryDN

DN getEntryDN()
Retrieves the DN of the entry to compare.

Returns:
The DN of the entry to compare.

getRawAttributeType

java.lang.String getRawAttributeType()
Retrieves the raw attribute type for this compare operation.

Returns:
The raw attribute type for this compare operation.

getAttributeType

AttributeType getAttributeType()
Retrieves the attribute type for this compare operation.

Returns:
The attribute type for this compare operation.

getAssertionValue

ByteString getAssertionValue()
Retrieves the assertion value for this compare operation.

Returns:
The assertion value for this compare operation.

getEntryToCompare

Entry getEntryToCompare()
Retrieves the entry to target with the compare operation.

Returns:
The entry to target with the compare operation.