Uses of Interface
org.forgerock.opendj.ldap.LdapClientSocket
-
Packages that use LdapClientSocket 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. -
-
Uses of LdapClientSocket in org.forgerock.openam.ldap
Methods in org.forgerock.openam.ldap that return types with arguments of type LdapClientSocket Modifier and Type Method Description io.reactivex.rxjava3.core.Single<LdapClientSocket>
LDAPUtils.FailoverLdapClient. connect()
-
Uses of LdapClientSocket in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return LdapClientSocket Modifier and Type Method Description static LdapClientSocket
LdapClients. newInternalLdapClientSocket(io.reactivex.rxjava3.functions.BiFunction<Integer,Request,io.reactivex.rxjava3.core.Flowable<Response>> requestHandler)
Creates a newLdapClientSocket
which will route requests to the providedrequestHandler
.static LdapClientSocket
LdapClients. uncloseable(LdapClientSocket socket)
Returns an uncloseable view of the provided socket.Methods in org.forgerock.opendj.ldap that return types with arguments of type LdapClientSocket Modifier and Type Method Description io.reactivex.rxjava3.core.Single<LdapClientSocket>
LdapClient. connect()
Returns aSingle
which connects to a peer each time it is subscribed.Methods in org.forgerock.opendj.ldap with parameters of type LdapClientSocket Modifier and Type Method Description static io.reactivex.rxjava3.core.Single<RootDse>
RootDse. readRootDse(LdapClientSocket socket)
Reads the Root DSE from the Directory Server using the provided socket.static LdapClientSocket
LdapClients. uncloseable(LdapClientSocket socket)
Returns an uncloseable view of the provided socket. -
Uses of LdapClientSocket in org.forgerock.opendj.ldap.schema
Methods in org.forgerock.opendj.ldap.schema with parameters of type LdapClientSocket Modifier and Type Method Description io.reactivex.rxjava3.core.Single<SchemaBuilder>
SchemaBuilder. addSchema(LdapClientSocket socket, Dn name, boolean overwrite)
Reads the schema elements contained in the named subschema sub-entry and adds them to this schema builder.io.reactivex.rxjava3.core.Single<SchemaBuilder>
SchemaBuilder. addSchemaForEntry(LdapClientSocket socket, 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.static io.reactivex.rxjava3.core.Single<Schema>
Schema. readSchema(LdapClientSocket socket, Dn name)
Reads the schema contained in the named subschema sub-entry.static io.reactivex.rxjava3.core.Single<Schema>
Schema. readSchemaForEntry(LdapClientSocket socket, Dn name)
Reads the schema contained in the subschema sub-entry which applies to the named entry.
-