Uses of Interface
org.forgerock.opendj.ldif.EntryReader
Package
Description
Classes and interfaces for core types including connections, entries, and
attributes.
Classes and interfaces for reading and writing LDIF.
Contains implementations for a number of Directory Server data types.
-
Uses of EntryReader in org.forgerock.opendj.ldap
Modifier and TypeMethodDescriptionMemoryBackend.loadNoOverwrite
(EntryReader reader) Reads all of the entries from the provided entry reader and adds them to the content of this memory backend.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.ModifierConstructorDescriptionMemoryBackend
(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
Modifier and TypeClassDescriptionclass
AConnectionEntryReader
is a bridge fromConnection
s toEntryReader
s.final class
A template driven entry generator, as used by the makeldif tool.final class
An LDIF entry reader reads attribute value records (entries) using the LDAP Data Interchange Format (LDIF) from a user defined source.Modifier and TypeMethodDescriptionstatic 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
.Modifier and TypeMethodDescriptionstatic 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
.Modifier and TypeMethodDescriptionLdif.newEntryPublisher
(Supplier<? extends EntryReader> factory) Returns aFlowable
view of aEntryReader
, creating a new reader for each subscriber. -
Uses of EntryReader in org.opends.server.types
ModifierConstructorDescriptionLDIFImportConfig
(EntryReader entryReader) Creates a new LDIF import configuration that will read from the provided entry reader.