Interface PostOperationCompareOperation
-
- All Superinterfaces:
PluginOperation
,PostOperationOperation
- All Known Implementing Classes:
CompareOperation
@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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ByteString
getAssertionValue()
Retrieves the assertion value for this compare operation.AttributeDescription
getAttributeDescription()
Retrieves the attribute description 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.-
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
-
getEntryDN
Dn getEntryDN()
Retrieves the DN of the entry to compare.- Returns:
- The DN of the entry to compare.
-
getAttributeDescription
AttributeDescription getAttributeDescription()
Retrieves the attribute description for this compare operation.- Returns:
- The attribute description 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.
-
-