Uses of Interface
org.forgerock.opendj.ldap.Connection
-
Packages that use Connection Package Description org.forgerock.openam.ldap This package contains utility methods to ease/unify development when using the OpenDJ LDAP SDK.org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.schema Classes and interfaces for constructing and querying LDAP schemas.org.forgerock.opendj.ldif Classes and interfaces for reading and writing LDIF. -
-
Uses of Connection in org.forgerock.openam.ldap
Methods in org.forgerock.openam.ldap with parameters of type Connection Modifier and Type Method Description static StringLDAPUtils. getDBName(String suffix, Connection ld)Gets the DB name. -
Uses of Connection in org.forgerock.opendj.ldap
Classes in org.forgerock.opendj.ldap with type parameters of type Connection Modifier and Type Class Description classAbstractConnectionWrapper<C extends Connection>An abstract base class from which connection wrappers may be easily implemented.Classes in org.forgerock.opendj.ldap that implement Connection Modifier and Type Class Description classAbstractAsynchronousConnectionAn abstract connection whose synchronous methods are implemented in terms of asynchronous methods.classAbstractConnectionThis class provides a skeletal implementation of theConnectioninterface, to minimize the effort required to implement this interface.classAbstractConnectionWrapper<C extends Connection>An abstract base class from which connection wrappers may be easily implemented.classAbstractSynchronousConnectionAn abstract connection whose asynchronous methods are implemented in terms of synchronous methods.Fields in org.forgerock.opendj.ldap declared as Connection Modifier and Type Field Description protected CAbstractConnectionWrapper. connectionThe wrapped connection.Methods in org.forgerock.opendj.ldap that return Connection Modifier and Type Method Description ConnectionConnectionFactory. getConnection()Returns a connection to the Directory Server associated with this connection factory.ConnectionLdapConnectionFactory. getConnection()static ConnectionConnections. newInternalConnection(io.reactivex.rxjava3.functions.BiFunction<Integer,Request,io.reactivex.rxjava3.core.Flowable<Response>> requestHandler)Creates a newConnectionwhich will route requests to the providedrequestHandler.static ConnectionConnections. uncloseable(Connection connection)Returns an uncloseable view of the provided connection.Methods in org.forgerock.opendj.ldap that return types with arguments of type Connection Modifier and Type Method Description Promise<Connection,LdapException>ConnectionFactory. getConnectionAsync()Asynchronously obtains a connection to the Directory Server associated with this connection factory.Promise<Connection,LdapException>LdapConnectionFactory. getConnectionAsync()Methods in org.forgerock.opendj.ldap with parameters of type Connection Modifier and Type Method Description static RootDseRootDse. readRootDse(Connection connection)Reads the Root DSE from the Directory Server using the provided connection.static LdapPromise<RootDse>RootDse. readRootDseAsync(Connection connection)Asynchronously reads the Root DSE from the Directory Server using the provided connection.static ConnectionConnections. uncloseable(Connection connection)Returns an uncloseable view of the provided connection. -
Uses of Connection in org.forgerock.opendj.ldap.schema
Methods in org.forgerock.opendj.ldap.schema with parameters of type Connection Modifier and Type Method Description SchemaBuilderSchemaBuilder. addSchema(Connection connection, Dn name, boolean overwrite)Reads the schema elements contained in the named subschema sub-entry and adds them to this schema builder.LdapPromise<SchemaBuilder>SchemaBuilder. addSchemaAsync(Connection connection, Dn name, boolean overwrite)Asynchronously reads the schema elements contained in the named subschema sub-entry and adds them to this schema builder.SchemaBuilderSchemaBuilder. addSchemaForEntry(Connection connection, Dn name, boolean overwrite)Reads the schema elements contained in the subschema sub-entry which applies to the named entry and adds them to this schema builder.LdapPromise<SchemaBuilder>SchemaBuilder. addSchemaForEntryAsync(Connection connection, Dn name, boolean overwrite)Asynchronously reads the schema elements contained in the subschema sub-entry which applies to the named entry and adds them to this schema builder.static SchemaSchema. readSchema(Connection connection, Dn name)Reads the schema contained in the named subschema sub-entry.static LdapPromise<Schema>Schema. readSchemaAsync(Connection connection, Dn name)Asynchronously reads the schema contained in the named subschema sub-entry.static SchemaSchema. readSchemaForEntry(Connection connection, Dn name)Reads the schema contained in the subschema sub-entry which applies to the named entry.static LdapPromise<Schema>Schema. readSchemaForEntryAsync(Connection connection, Dn name)Asynchronously reads the schema contained in the subschema sub-entry which applies to the named entry. -
Uses of Connection in org.forgerock.opendj.ldif
Constructors in org.forgerock.opendj.ldif with parameters of type Connection Constructor Description ConnectionChangeRecordWriter(Connection connection)Creates a new connection change record writer whose destination is the provided connection.ConnectionEntryReader(Connection connection, SearchRequest searchRequest)Creates a new connection entry reader whose destination is the provided connection using an unboundedLinkedBlockingQueue.ConnectionEntryReader(Connection connection, SearchRequest searchRequest, BlockingQueue<Response> entries)Creates a new connection entry reader whose destination is the provided connection.ConnectionEntryWriter(Connection connection)Creates a new connection entry writer whose destination is the provided connection.
-