Uses of Interface
org.forgerock.opendj.ldif.ChangeRecordReader
-
Packages that use ChangeRecordReader Package Description org.forgerock.opendj.ldif Classes and interfaces for reading and writing LDIF. -
-
Uses of ChangeRecordReader in org.forgerock.opendj.ldif
Classes in org.forgerock.opendj.ldif that implement ChangeRecordReader Modifier and Type Class Description class
LdifChangeRecordReader
An LDIF change record reader reads change records using the LDAP Data Interchange Format (LDIF) from a user defined source.Methods in org.forgerock.opendj.ldif that return ChangeRecordReader Modifier and Type Method Description static ChangeRecordReader
Ldif. diff(EntryReader source, EntryReader target)
Compares the content ofsource
to the content oftarget
and returns the differences in a change record reader.static ChangeRecordReader
Ldif. diff(EntryReader source, EntryReader target, Options options)
Compares the content ofsource
to the content oftarget
and returns the differences in a change record reader.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.Methods in org.forgerock.opendj.ldif with parameters of type ChangeRecordReader Modifier and Type Method Description static ChangeRecordWriter
Ldif. copyTo(ChangeRecordReader input, ChangeRecordWriter output)
Copies the content ofinput
tooutput
.static EntryReader
Ldif. patch(EntryReader input, ChangeRecordReader patch)
Applies the set of changes contained inpatch
to the content ofinput
and returns the result in an entry reader.static EntryReader
Ldif. patch(EntryReader input, ChangeRecordReader patch, RejectedChangeRecordListener listener)
Applies the set of changes contained inpatch
to the content ofinput
and returns the result in an entry reader.Method parameters in org.forgerock.opendj.ldif with type arguments of type ChangeRecordReader Modifier and Type Method Description static Flowable<ChangeRecord>
Ldif. newChangeRecordPublisher(Supplier<? extends ChangeRecordReader> factory)
Returns aFlowable
view of aChangeRecordReader
, creating a new reader for each subscriber.
-