mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

fguigues
12.13.2008 d90a8f4889fdc359bfe5f089b937b303a4d58973
opends/src/server/org/opends/server/protocols/internal/InternalConnectionHandler.java
@@ -36,6 +36,7 @@
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;
@@ -67,6 +68,8 @@
  // The name of the protocol for this connection handler.
  private String protocol;
  // Configuration object of the connection hanlder
  private ConnectionHandlerCfg configuration;
  /**
@@ -124,7 +127,7 @@
                   ConnectionHandlerCfg configuration)
      throws ConfigException, InitializationException
  {
    // No implementation required.
    this.configuration = configuration;
  }
@@ -269,5 +272,14 @@
    InternalClientConnection.clearRootClientConnectionAtShutdown();
  }
  /**
   * Return the configuration dn of the object.
   * @return DN of the entry.
   */
  @Override()
  public DN getComponentEntryDN() {
      return this.configuration.dn();
  }
}