Uses of Interface
org.forgerock.opendj.ldif.ChangeRecord
-
Packages that use ChangeRecord Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.messages Classes and interfaces for core LDAP requests/responses.org.forgerock.opendj.ldif Classes and interfaces for reading and writing LDIF.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.backends Contains various Directory Server backend implementations.org.opends.server.replication.plugin This package contains the part of the Multi-master replication code that works on the Directory Server side.org.opends.server.replication.protocol This package contains the code used by the replication server and by the code running on the Directory Server side to exchange their information.org.opends.server.util Contains implementations for various Directory Server utility classes and methods which may be used throughout the server but do not necessarily fit in elsewhere. -
-
Uses of ChangeRecord in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type ChangeRecord Modifier and Type Method Description Result
AbstractConnection. applyChange(ChangeRecord request)
Result
AbstractConnectionWrapper. applyChange(ChangeRecord request)
Applies the provided change request to the Directory Server.Result
Connection. applyChange(ChangeRecord request)
Applies the provided change request to the Directory Server.default Single<Result>
LdapClientSocket. applyChange(ChangeRecord request)
Applies the provided change request to the Directory Server.LdapPromise<Result>
AbstractConnection. applyChangeAsync(ChangeRecord request)
LdapPromise<Result>
AbstractConnection. applyChangeAsync(ChangeRecord request, IntermediateResponseHandler intermediateResponseHandler)
LdapPromise<Result>
AbstractConnectionWrapper. applyChangeAsync(ChangeRecord request)
Asynchronously applies the provided change request to the Directory Server.LdapPromise<Result>
AbstractConnectionWrapper. applyChangeAsync(ChangeRecord request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously applies the provided change request to the Directory Server.LdapPromise<Result>
Connection. applyChangeAsync(ChangeRecord request)
Asynchronously applies the provided change request to the Directory Server.LdapPromise<Result>
Connection. applyChangeAsync(ChangeRecord request, IntermediateResponseHandler intermediateResponseHandler)
Asynchronously applies the provided change request to the Directory Server. -
Uses of ChangeRecord in org.forgerock.opendj.ldap.messages
Subinterfaces of ChangeRecord in org.forgerock.opendj.ldap.messages Modifier and Type Interface Description interface
AddRequest
The Add operation allows a client to request the addition of an entry into the Directory.interface
DeleteRequest
The Delete operation allows a client to request the removal of an entry from the Directory.interface
ModifyDnRequest
The Modify DN operation allows a client to change the Relative Distinguished Name (RDN) of an entry in the Directory and/or to move a subtree of entries to a new location in the Directory.interface
ModifyRequest
The Modify operation allows a client to request that a modification of an entry be performed on its behalf by a server.Methods in org.forgerock.opendj.ldap.messages that return ChangeRecord Modifier and Type Method Description static ChangeRecord
Requests. newChangeRecord(String... ldifLines)
Creates a new change record (an add, delete, modify, or modify DN request) using the provided lines of LDIF decoded using the default schema. -
Uses of ChangeRecord in org.forgerock.opendj.ldif
Methods in org.forgerock.opendj.ldif that return ChangeRecord Modifier and Type Method Description ChangeRecord
ChangeRecord. addControl(Control control)
ChangeRecord
ChangeRecord. addControls(Iterable<? extends Control> controls)
static ChangeRecord
Ldif. makeChangeRecord(String... ldifLines)
Parses the provided array of LDIF lines as a single LDIF change record.ChangeRecord
ChangeRecordReader. readChangeRecord()
Reads the next change record, blocking if necessary until a change record is available.ChangeRecord
LdifChangeRecordReader. readChangeRecord()
Reads the next change record, blocking if necessary until a change record is available.ChangeRecord
ChangeRecord. setName(String dn)
Sets the distinguished name of the entry to be updated.ChangeRecord
ChangeRecord. setName(Dn dn)
Sets the distinguished name of the entry to be updated.Methods in org.forgerock.opendj.ldif that return types with arguments of type ChangeRecord Modifier and Type Method Description static Flowable<ChangeRecord>
Ldif. newChangeRecordPublisher(Callable<? extends ChangeRecordReader> factory)
Returns aFlowable
view of aChangeRecordReader
, creating a new reader for each subscriber.Methods in org.forgerock.opendj.ldif with parameters of type ChangeRecord Modifier and Type Method Description static String
Ldif. toLdif(ChangeRecord change)
Returns the LDIF representation ofchange
.static String
LdifChangeRecordWriter. toString(ChangeRecord change)
Returns the LDIF string representation of the provided change record.ChangeRecordWriter
ChangeRecordWriter. writeChangeRecord(ChangeRecord change)
Writes a change record.ConnectionChangeRecordWriter
ConnectionChangeRecordWriter. writeChangeRecord(ChangeRecord change)
Writes the provided change record to the underlying connection, blocking until the request completes.LdifChangeRecordWriter
LdifChangeRecordWriter. writeChangeRecord(ChangeRecord change)
Method parameters in org.forgerock.opendj.ldif with type arguments of type ChangeRecord Modifier and Type Method Description static ChangeRecordReader
Ldif. newChangeRecordReader(Iterable<? extends ChangeRecord> changes)
Returns a change record reader over the provided change record collection.static ChangeRecordReader
Ldif. newChangeRecordReader(Iterator<? extends ChangeRecord> changes)
Returns a change record reader over the provided change record iterator. -
Uses of ChangeRecord in org.opends.server.api
Methods in org.opends.server.api that return types with arguments of type ChangeRecord Modifier and Type Method Description Collection<ChangeRecord>
LocalBackend. getAndClearOfflineChanges()
Returns any changes that have been applied to this backend while the server was offline.Method parameters in org.opends.server.api with type arguments of type ChangeRecord Modifier and Type Method Description abstract void
SynchronizationProvider. synchronizeOfflineChanges(Collection<ChangeRecord> changes)
Synchronizes changes that have occurred to server data while the server was offline. -
Uses of ChangeRecord in org.opends.server.backends
Methods in org.opends.server.backends that return types with arguments of type ChangeRecord Modifier and Type Method Description Collection<ChangeRecord>
LDIFBackend. getAndClearOfflineChanges()
Collection<ChangeRecord>
SchemaBackend. getAndClearOfflineChanges()
-
Uses of ChangeRecord in org.opends.server.replication.plugin
Method parameters in org.opends.server.replication.plugin with type arguments of type ChangeRecord Modifier and Type Method Description void
MultimasterReplication. synchronizeOfflineChanges(Collection<ChangeRecord> changes)
-
Uses of ChangeRecord in org.opends.server.replication.protocol
Methods in org.opends.server.replication.protocol that return ChangeRecord Modifier and Type Method Description ChangeRecord
LDAPUpdateMsg. createRequest()
Create a request from this message.abstract ChangeRecord
LDAPUpdateMsg. createRequest(Dn newDN)
Create a request from this message using the provided DN. -
Uses of ChangeRecord in org.opends.server.util
Methods in org.opends.server.util that return ChangeRecord Modifier and Type Method Description ChangeRecord
LDIFReader. readChangeRecord()
Reads the next change record from the LDIF source.
-