Interface PostOperationAddOperation
-
- All Superinterfaces:
PluginOperation
,PostOperationOperation
- All Known Implementing Classes:
AddOperation
@PublicAPI(stability=UNCOMMITTED, mayInstantiate=false, mayExtend=false, mayInvoke=true) public interface PostOperationAddOperation extends PostOperationOperation
This class defines a set of methods that are available for use by post-operation 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterable<Attribute>
getAllAttributes()
Retrieves the set of processed user attributes for the entry to add.Dn
getEntryDN()
Retrieves the DN of the entry to add.Entry
getEntryToAdd()
Retrieves the entry to be added to the server.-
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 add.- Returns:
- The DN of the entry to add.
-
getAllAttributes
Iterable<Attribute> getAllAttributes()
Retrieves the set of processed user attributes for the entry to add. The contents of the returned map must not be altered by the caller.- Returns:
- The set of processed user attributes for the entry to add.
-
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.
-
-