Uses of Class
org.opends.server.api.ConnectionHandler
Package
Description
Contains a number of API declarations for use throughout the Directory Server.
Contains various classes that comprise the core of the Directory Server codebase.
Contains various Directory Server connection handler implementations which will be used to accept connections from
and perform communication with clients over various protocols.
Contains the implementation for the Directory Server connection handler that is responsible for interacting with
clients using HTTP.
Contains the implementation for the Directory Server connection handler that is responsible for interacting with
clients using JMX.
Contains the implementation for the Directory Server connection handler that is responsible for interacting with
clients using LDAPv3.
-
Uses of ConnectionHandler in org.opends.server.api
Modifier and TypeMethodDescriptionabstract ConnectionHandler<?>
ClientConnection.getConnectionHandler()
Retrieves the connection handler that accepted this client connection. -
Uses of ConnectionHandler in org.opends.server.core
Modifier and TypeMethodDescriptionDirectoryServer.getConnectionHandlers()
ServerContext.getConnectionHandlers()
Retrieves the set of connection handlers configured in the Directory Server.Modifier and TypeMethodDescriptionvoid
DirectoryServer.deregisterConnectionHandler
(ConnectionHandler<?> handler) void
ServerContext.deregisterConnectionHandler
(ConnectionHandler<?> handler) Deregisters the provided connection handler with the Directory Server.void
DirectoryServer.deregisterSupportedLDAPVersion
(int supportedLDAPVersion, ConnectionHandler<?> connectionHandler) void
ServerContext.deregisterSupportedLDAPVersion
(int supportedLDAPVersion, ConnectionHandler<?> connectionHandler) Deregisters the provided LDAP protocol version as supported within the Directory Server.void
DirectoryServer.registerConnectionHandler
(ConnectionHandler<? extends ConnectionHandlerCfg> handler) void
ServerContext.registerConnectionHandler
(ConnectionHandler<? extends ConnectionHandlerCfg> handler) Registers the provided connection handler with the Directory Server.void
DirectoryServer.registerSupportedLDAPVersion
(int supportedLDAPVersion, ConnectionHandler<?> connectionHandler) void
ServerContext.registerSupportedLDAPVersion
(int supportedLDAPVersion, ConnectionHandler<?> connectionHandler) Registers the provided LDAP protocol version as supported within the Directory Server. -
Uses of ConnectionHandler in org.opends.server.protocols
Modifier and TypeClassDescriptionfinal class
This class defines an LDIF connection handler, which can be used to watch for new LDIF files to be placed in a specified directory. -
Uses of ConnectionHandler in org.opends.server.protocols.http
Modifier and TypeClassDescriptionfinal class
This class defines a connection handler that will be used for communicating with clients over HTTP. -
Uses of ConnectionHandler in org.opends.server.protocols.jmx
Modifier and TypeClassDescriptionfinal class
This class defines a connection handler that will be used for communicating with administrative clients over JMX. -
Uses of ConnectionHandler in org.opends.server.protocols.ldap
Modifier and TypeClassDescriptionfinal class
This class defines a connection handler that will be used for communicating with clients over LDAP.