Uses of Class
org.opends.server.api.ConnectionHandler
-
Packages that use ConnectionHandler Package Description org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.protocols Contains various Directory Server connection handler implementations which will be used to accept connections from and perform communication with clients over various protocols.org.opends.server.protocols.http Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using HTTP.org.opends.server.protocols.jmx Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using JMX.org.opends.server.protocols.ldap Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using LDAPv3.org.opends.server.snmp This package contains Simple Network Management Protocol (SNMP) connection handler, the required classes to support MIB 2605 objects and SNMP requests, and the SNMP adaptor that allows a SNMP manager to access OpenDS monitoring information. -
-
Uses of ConnectionHandler in org.opends.server.api
Methods in org.opends.server.api that return ConnectionHandler Modifier and Type Method Description abstract ConnectionHandler<?>ClientConnection. getConnectionHandler()Retrieves the connection handler that accepted this client connection. -
Uses of ConnectionHandler in org.opends.server.core
Methods in org.opends.server.core that return types with arguments of type ConnectionHandler Modifier and Type Method Description List<ConnectionHandler<?>>DirectoryServer. getConnectionHandlers()List<ConnectionHandler<?>>ServerContext. getConnectionHandlers()Retrieves the set of connection handlers configured in the Directory Server.Methods in org.opends.server.core with parameters of type ConnectionHandler Modifier and Type Method Description voidDirectoryServer. deregisterConnectionHandler(ConnectionHandler<?> handler)voidServerContext. deregisterConnectionHandler(ConnectionHandler<?> handler)Deregisters the provided connection handler with the Directory Server.voidDirectoryServer. deregisterSupportedLDAPVersion(int supportedLDAPVersion, ConnectionHandler<?> connectionHandler)voidServerContext. deregisterSupportedLDAPVersion(int supportedLDAPVersion, ConnectionHandler<?> connectionHandler)Deregisters the provided LDAP protocol version as supported within the Directory Server.voidDirectoryServer. registerConnectionHandler(ConnectionHandler<? extends ConnectionHandlerCfg> handler)voidServerContext. registerConnectionHandler(ConnectionHandler<? extends ConnectionHandlerCfg> handler)Registers the provided connection handler with the Directory Server.voidDirectoryServer. registerSupportedLDAPVersion(int supportedLDAPVersion, ConnectionHandler<?> connectionHandler)voidServerContext. 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
Subclasses of ConnectionHandler in org.opends.server.protocols Modifier and Type Class Description classLDIFConnectionHandlerThis 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
Subclasses of ConnectionHandler in org.opends.server.protocols.http Modifier and Type Class Description classHTTPConnectionHandlerThis class defines a connection handler that will be used for communicating with clients over HTTP. -
Uses of ConnectionHandler in org.opends.server.protocols.jmx
Subclasses of ConnectionHandler in org.opends.server.protocols.jmx Modifier and Type Class Description classJmxConnectionHandlerThis class defines a connection handler that will be used for communicating with administrative clients over JMX.Methods in org.opends.server.protocols.jmx that return ConnectionHandler Modifier and Type Method Description ConnectionHandler<?>JmxClientConnection. getConnectionHandler() -
Uses of ConnectionHandler in org.opends.server.protocols.ldap
Subclasses of ConnectionHandler in org.opends.server.protocols.ldap Modifier and Type Class Description classLDAPConnectionHandlerThis class defines a connection handler that will be used for communicating with clients over LDAP.Methods in org.opends.server.protocols.ldap that return ConnectionHandler Modifier and Type Method Description ConnectionHandler<?>LdapClientConnection. getConnectionHandler() -
Uses of ConnectionHandler in org.opends.server.snmp
Subclasses of ConnectionHandler in org.opends.server.snmp Modifier and Type Class Description classSNMPConnectionHandlerThis class defines an SNMP connection handler, which can be used to answer SNMP Requests on MIB 2605.
-