Uses of Interface
org.forgerock.opendj.ldap.LdapSession
-
Packages that use LdapSession Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes. -
-
Uses of LdapSession in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap with parameters of type LdapSession Modifier and Type Method Description void
LdapSessionCompletionListener. handleConnectionClosed(LdapSession context)
Invoked when the client closed the connection, possibly using an unbind request.void
LdapSessionCompletionListener. handleConnectionDisconnected(LdapSession context, ResultCode resultCode, String diagnosticMessage)
Invoked when the connection has been disconnected by the server.void
LdapSessionCompletionListener. handleConnectionError(LdapSession context, Throwable error)
Invoked when the connection has been disconnected because of an error (e.g: message too big).Constructor parameters in org.forgerock.opendj.ldap with type arguments of type LdapSession Constructor Description LdapServer(int port, Function<LdapSession,BiFunction<Integer,Request,Flowable<Response>>> factory)
Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer(int port, Function<LdapSession,BiFunction<Integer,Request,Flowable<Response>>> factory, Options options)
Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer(String host, int port, Function<LdapSession,BiFunction<Integer,Request,Flowable<Response>>> factory)
Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer(String host, int port, Function<LdapSession,BiFunction<Integer,Request,Flowable<Response>>> factory, Options options)
Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer(Set<InetSocketAddress> addresses, Function<LdapSession,BiFunction<Integer,Request,Flowable<Response>>> factory)
Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.LdapServer(Set<InetSocketAddress> addresses, Function<LdapSession,BiFunction<Integer,Request,Flowable<Response>>> factory, Options options)
Creates a new LDAP listener implementation which will listen for LDAP client connections at the provided address.
-