Interface PostCommitAddOperation
- All Superinterfaces:
PluginOperation
,PostCommitOperation
- All Known Implementing Classes:
AddOperation
This class defines a set of methods that are available for use by post-commit plugins for add 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
Modifier and TypeMethodDescriptionRetrieves the set of attributes as read from the client request.Retrieves the DN of the entry to add.Retrieves the entry to be added to the server.Methods inherited from interface org.opends.server.types.operation.PluginOperation
checkIfCanceled, getAttachment, getAttachments, getClientConnection, getConnectionID, getMessageID, getOperationID, getRequest, getRequestControl, getRequestControl, getRequestControls, getResponseControls, hasPrivilege, isInternalOperation, isSynchronizationOperation, setAttachment, toString, toString
Methods inherited from interface org.opends.server.types.operation.PostCommitOperation
getAdditionalLogItems, getAuthorizationDN, getErrorMessage, getMatchedDN, getReferralURLs, getResultCode
-
Method Details
-
getEntryDN
Dn getEntryDN()Retrieves the DN of the entry to add.- Returns:
- The DN of the entry to add.
-
getAllAttributes
Retrieves the set of attributes as read from the client request. Some of these attributes may be invalid as no validation will have been performed on them.- Returns:
- The set of attributes as read from the client request.
-
getEntryToAdd
Entry getEntryToAdd()Retrieves the entry to be added to the server. The contents of the returned entry must not be altered by the caller.- Returns:
- The entry to be added to the server.
-