Package org.forgerock.opendj.ldif
Interface ChangeRecord
- All Superinterfaces:
Request
- All Known Subinterfaces:
AddRequest,DeleteRequest,ModifyDNRequest,ModifyRequest
A request to modify the content of the Directory in some way. A change record
represents one of the following operations:
- An
Addoperation. - An
Deleteoperation. - An
Modifyoperation. - An
ModifyDNoperation.
-
Method Summary
Modifier and TypeMethodDescription<R,P> R accept(ChangeRecordVisitor<R, P> v, P p) Applies aChangeRecordVisitorto thisChangeRecord.getName()Returns the distinguished name of the entry being modified by thisChangeRecord.Methods inherited from interface org.forgerock.opendj.ldap.requests.Request
addControl, containsControl, getControl, getControls
-
Method Details
-
accept
Applies aChangeRecordVisitorto thisChangeRecord.- Type Parameters:
R- The return type of the visitor's methods.P- The type of the additional parameters to the visitor's methods.- Parameters:
v- The change record visitor.p- Optional additional visitor parameter.- Returns:
- A result as specified by the visitor.
-
getName
Returns the distinguished name of the entry being modified by thisChangeRecord.- Returns:
- The distinguished name of the entry being modified.
-