Uses of Interface
org.forgerock.opendj.ldap.LdapClientSocket
-
Packages that use LdapClientSocket Package Description 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.rest2ldap APIs for implementing REST to LDAP gateways.org.forgerock.opendj.server.embedded Provides support for an embedded directory server.org.opends.server.protocols.http Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using HTTP. -
-
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(BiFunction<Integer,Request,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 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 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 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.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 Single<Schema>
Schema. readSchema(LdapClientSocket socket, Dn name)
Reads the schema contained in the named subschema sub-entry.static Single<Schema>
Schema. readSchemaForEntry(LdapClientSocket socket, Dn name)
Reads the schema contained in the subschema sub-entry which applies to the named entry. -
Uses of LdapClientSocket in org.forgerock.opendj.rest2ldap
Methods in org.forgerock.opendj.rest2ldap that return LdapClientSocket Modifier and Type Method Description LdapClientSocket
LdapClientContext. getLdapClientSocket()
Returns the LDAP client socket authenticated using theSecurityContext
which will be used for performing subsequent LDAP operations.Constructors in org.forgerock.opendj.rest2ldap with parameters of type LdapClientSocket Constructor Description LdapClientContext(org.forgerock.services.context.Context parent, LdapClient ldapClient, LdapClientSocket socket)
Creates a new LDAP client context having the provided parent and an ID automatically generated usingUUID.randomUUID()
.LdapClientContext(org.forgerock.services.context.Context parent, LdapClient ldapClient, LdapClientSocket socket, Control proxiedAuthControl)
Creates a new LDAP client context having the provided parent and an ID automatically generated usingUUID.randomUUID()
. -
Uses of LdapClientSocket in org.forgerock.opendj.server.embedded
Methods in org.forgerock.opendj.server.embedded that return LdapClientSocket Modifier and Type Method Description LdapClientSocket
EmbeddedDirectoryServer. getLdapClientSocket()
Returns a LDAP client socket connected to the embedded server that will be authenticated automatically with the bind DN defined for this server. -
Uses of LdapClientSocket in org.opends.server.protocols.http
Methods in org.opends.server.protocols.http that return LdapClientSocket Modifier and Type Method Description LdapClientSocket
LDAPContext.InternalLdapClient. getAuthenticatedSocket(Entry userEntry)
Get a directLdapClientSocket
to this Directory Server.
-