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 MemoryBackendMemoryBackend. loadNoOverwrite(EntryReader reader)Reads all of the entries from the provided entry reader and adds them to the content of this memory backend.MemoryBackendMemoryBackend. 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 classConnectionEntryReaderAConnectionEntryReaderis a bridge fromConnections toEntryReaders.classEntryGeneratorA template driven entry generator, as used by the makeldif tool.classLdifEntryReaderAn 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 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 EntryReader Modifier and Type Method Description static 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 EntryReader Modifier and Type Method Description static Flowable<Entry>Ldif. newEntryPublisher(Supplier<? extends EntryReader> factory)Returns aFlowableview of aEntryReader, creating a new reader for each subscriber.
-