| | |
| | | import org.opends.server.api.ClientConnection; |
| | | import org.opends.server.api.ConnectionHandler; |
| | | import org.opends.server.config.ConfigException; |
| | | import org.opends.server.types.DN; |
| | | import org.opends.server.types.InitializationException; |
| | | import org.opends.server.types.HostPort; |
| | | |
| | |
| | | // The name of the protocol for this connection handler. |
| | | private String protocol; |
| | | |
| | | // Configuration object of the connection hanlder |
| | | private ConnectionHandlerCfg configuration; |
| | | |
| | | |
| | | /** |
| | |
| | | ConnectionHandlerCfg configuration) |
| | | throws ConfigException, InitializationException |
| | | { |
| | | // No implementation required. |
| | | this.configuration = configuration; |
| | | } |
| | | |
| | | |
| | |
| | | InternalClientConnection.clearRootClientConnectionAtShutdown(); |
| | | } |
| | | |
| | | /** |
| | | * Return the configuration dn of the object. |
| | | * @return DN of the entry. |
| | | */ |
| | | @Override() |
| | | public DN getComponentEntryDN() { |
| | | return this.configuration.dn(); |
| | | } |
| | | |
| | | } |
| | | |