Interface PreParseCompareOperation
-
- All Superinterfaces:
PluginOperation
,PreParseOperation
- All Known Implementing Classes:
CompareOperation
@PublicAPI(stability=UNCOMMITTED, mayInstantiate=false, mayExtend=false, mayInvoke=true) public interface PreParseCompareOperation extends PreParseOperation
This class defines a set of methods that are available for use by pre-parse 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 entry DN as included in the client request.void
setAssertionValue(ByteString assertionValue)
Specifies the assertion value for this compare operation.void
setAttributeDescription(AttributeDescription attributeDescription)
Specifies the attribute description for this compare operation.void
setEntryDN(Dn entryDN)
Specifies the entry DN as included in the client request.-
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.PreParseOperation
addAdditionalLogItem, addRequestControl, addResponseControl, appendErrorMessage, getAdditionalLogItems, getErrorMessage, removeResponseControl, setErrorMessage
-
-
-
-
Method Detail
-
getEntryDN
Dn getEntryDN()
Retrieves the entry DN as included in the client request.- Returns:
- The entry DN as included in the client request.
-
setEntryDN
void setEntryDN(Dn entryDN)
Specifies the entry DN as included in the client request.- Parameters:
entryDN
- The entry DN for this compare operation.
-
getAttributeDescription
AttributeDescription getAttributeDescription()
Retrieves the attribute description for this compare operation.- Returns:
- The attribute description for this compare operation.
-
setAttributeDescription
void setAttributeDescription(AttributeDescription attributeDescription)
Specifies the attribute description for this compare operation.- Parameters:
attributeDescription
- 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.
-
setAssertionValue
void setAssertionValue(ByteString assertionValue)
Specifies the assertion value for this compare operation.- Parameters:
assertionValue
- The assertion value for this compare operation.
-
-