Uses of Interface
org.forgerock.opendj.ldif.EntryReader
-
Packages that use EntryReader Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldif Classes and interfaces for reading and writing LDIF. -
-
Uses of EntryReader in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type EntryReader Modifier and Type Method Description MemoryBackend
MemoryBackend. loadNoOverwrite(EntryReader reader)
Reads all of the entries from the provided entry reader and adds them to the content of this memory backend.MemoryBackend
MemoryBackend. loadOverwrite(EntryReader reader)
Reads all of the entries from the provided entry reader and adds them to the content of this memory backend replacing any existing entries having the same name.Constructors in org.forgerock.opendj.ldap with parameters of type EntryReader Constructor Description MemoryBackend(Schema schema, EntryReader reader)
Creates a new memory backend which will use the provided schema, and will contain the entries read from the provided entry reader.MemoryBackend(EntryReader reader)
Creates a new memory backend which will use the default schema, and will contain the entries read from the provided entry reader. -
Uses of EntryReader in org.forgerock.opendj.ldif
Classes in org.forgerock.opendj.ldif that implement EntryReader Modifier and Type Class Description class
ConnectionEntryReader
AConnectionEntryReader
is a bridge fromConnection
s toEntryReader
s.class
EntryGenerator
A template driven entry generator, as used by the makeldif tool.class
LdifEntryReader
An LDIF entry reader reads attribute value records (entries) using the LDAP Data Interchange Format (LDIF) from a user defined source.Methods in org.forgerock.opendj.ldif that return EntryReader Modifier and Type Method Description static EntryReader
Ldif. newEntryReader(Iterable<? extends Entry> entries)
Returns an entry reader over the provided entry collection.static EntryReader
Ldif. newEntryReader(Iterator<? extends Entry> entries)
Returns an entry reader over the provided entry iterator.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.static EntryReader
Ldif. search(EntryReader input, SearchRequest search)
Returns a filtered view ofinput
containing only those entries which match the search base DN, scope, and filtered defined insearch
.static EntryReader
Ldif. search(EntryReader input, SearchRequest search, Schema schema)
Returns a filtered view ofinput
containing only those entries which match the search base DN, scope, and filtered defined insearch
.Methods in org.forgerock.opendj.ldif with parameters of type EntryReader Modifier and Type Method Description static EntryWriter
Ldif. copyTo(EntryReader input, EntryWriter output)
Copies the content ofinput
tooutput
.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 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.static EntryReader
Ldif. search(EntryReader input, SearchRequest search)
Returns a filtered view ofinput
containing only those entries which match the search base DN, scope, and filtered defined insearch
.static EntryReader
Ldif. search(EntryReader input, SearchRequest search, Schema schema)
Returns a filtered view ofinput
containing only those entries which match the search base DN, scope, and filtered defined insearch
.Method parameters in org.forgerock.opendj.ldif with type arguments of type EntryReader Modifier and Type Method Description static io.reactivex.rxjava3.core.Flowable<Entry>
Ldif. newEntryPublisher(io.reactivex.rxjava3.functions.Supplier<? extends EntryReader> factory)
Returns aFlowable
view of aEntryReader
, creating a new reader for each subscriber.
-