Uses of Interface
org.forgerock.opendj.ldif.EntryReader
Packages that use 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
Methods in org.forgerock.opendj.ldap with parameters of type EntryReaderModifier 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.Constructors in org.forgerock.opendj.ldap with parameters of type EntryReaderModifierConstructorDescriptionMemoryBackend(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 EntryReaderModifier and TypeClassDescriptionclassAConnectionEntryReaderis a bridge fromConnections toEntryReaders.final classA template driven entry generator, as used by the makeldif tool.final classAn 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 EntryReaderModifier and TypeMethodDescriptionstatic EntryReaderLdif.newEntryReader(Iterable<? extends Entry> entries) Returns an entry reader over the provided entry collection.static EntryReaderLdif.newEntryReader(Iterator<? extends Entry> entries) Returns an entry reader over the provided entry iterator.static EntryReaderLdif.patch(EntryReader input, ChangeRecordReader patch) Applies the set of changes contained inpatchto the content ofinputand returns the result in an entry reader.static EntryReaderLdif.patch(EntryReader input, ChangeRecordReader patch, RejectedChangeRecordListener listener) Applies the set of changes contained inpatchto the content ofinputand returns the result in an entry reader.static EntryReaderLdif.search(EntryReader input, SearchRequest search) Returns a filtered view ofinputcontaining only those entries which match the search base DN, scope, and filtered defined insearch.static EntryReaderLdif.search(EntryReader input, SearchRequest search, Schema schema) Returns a filtered view ofinputcontaining only those entries which match the search base DN, scope, and filtered defined insearch.Methods in org.forgerock.opendj.ldif with parameters of type EntryReaderModifier and TypeMethodDescriptionstatic EntryWriterLdif.copyTo(EntryReader input, EntryWriter output) Copies the content ofinputtooutput.static ChangeRecordReaderLdif.diff(EntryReader source, EntryReader target) Compares the content ofsourceto the content oftargetand returns the differences in a change record reader.static ChangeRecordReaderLdif.diff(EntryReader source, EntryReader target, Options options) Compares the content ofsourceto the content oftargetand returns the differences in a change record reader.static EntryReaderLdif.patch(EntryReader input, ChangeRecordReader patch) Applies the set of changes contained inpatchto the content ofinputand returns the result in an entry reader.static EntryReaderLdif.patch(EntryReader input, ChangeRecordReader patch, RejectedChangeRecordListener listener) Applies the set of changes contained inpatchto the content ofinputand returns the result in an entry reader.static EntryReaderLdif.search(EntryReader input, SearchRequest search) Returns a filtered view ofinputcontaining only those entries which match the search base DN, scope, and filtered defined insearch.static EntryReaderLdif.search(EntryReader input, SearchRequest search, Schema schema) Returns a filtered view ofinputcontaining 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 EntryReaderModifier and TypeMethodDescriptionLdif.newEntryPublisher(Supplier<? extends EntryReader> factory) Returns aFlowableview of aEntryReader, creating a new reader for each subscriber. -
Uses of EntryReader in org.opends.server.types
Constructors in org.opends.server.types with parameters of type EntryReaderModifierConstructorDescriptionLDIFImportConfig(EntryReader entryReader) Creates a new LDIF import configuration that will read from the provided entry reader.