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

neil_a_wilson
01.18.2007 a49dee3f75d6e2548e9114d9495655dd56f06973
opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java
@@ -222,7 +222,6 @@
  public void initializeConnectionHandler(ConfigEntry configEntry)
      throws ConfigException, InitializationException
  {
    //
    // If the initializeConnectionHandler method is called,
    // it means that the "enabled" attribure was true.
@@ -321,7 +320,6 @@
  public void finalizeConnectionHandler(
      String finalizeReason, boolean closeConnections)
  {
    // We should also close the RMI registry.
    rmiConnector.finalizeConnectionHandler(closeConnections, true);
  }
@@ -331,7 +329,6 @@
   */
  public String getConnectionHandlerName()
  {
    return connectionHandlerName;
  }
@@ -340,7 +337,6 @@
   */
  public String getProtocol()
  {
    return protocol;
  }
@@ -349,7 +345,6 @@
   */
  public Collection<HostPort> getListeners()
  {
    return listeners;
  }
@@ -380,7 +375,6 @@
   */
  public String getShutdownListenerName()
  {
    return handlerName;
  }
@@ -408,7 +402,6 @@
   */
  public DN getConfigurableComponentEntryDN()
  {
    return configEntryDN;
  }
@@ -421,7 +414,6 @@
   */
  public List<ConfigAttribute> getConfigurationAttributes()
  {
    return configAttrs;
  }
@@ -445,7 +437,6 @@
  public boolean hasAcceptableConfiguration(
      ConfigEntry configEntry, List<String> unacceptableReasons)
  {
    boolean configValid = true;
    //
@@ -562,7 +553,6 @@
  public ConfigChangeResult applyNewConfiguration(
      ConfigEntry configEntry, boolean detailedResults)
  {
    //
    // Create variables to include in the response.
    ResultCode resultCode = ResultCode.SUCCESS;
@@ -822,7 +812,6 @@
   */
  public void toString(StringBuilder buffer)
  {
    buffer.append(handlerName);
  }
@@ -835,7 +824,6 @@
   */
  public DN getComponentEntryDN()
  {
    return configEntryDN;
  }
@@ -848,7 +836,6 @@
   */
  public String getClassName()
  {
    return CLASS_NAME;
  }
@@ -864,7 +851,6 @@
   */
  public LinkedHashMap<String, String> getAlerts()
  {
    LinkedHashMap<String, String> alerts = new LinkedHashMap<String, String>();
    return alerts;
@@ -887,7 +873,6 @@
  private BooleanConfigAttribute getEnabledAtt(ConfigEntry configEntry)
      throws InitializationException, ConfigException
  {
    int msgID = MSGID_CONFIG_CONNHANDLER_ATTR_DESCRIPTION_ENABLED;
    BooleanConfigAttribute enabledStub =
         new BooleanConfigAttribute(ATTR_CONNECTION_HANDLER_ENABLED,
@@ -951,7 +936,6 @@
  private IntegerConfigAttribute getListenPort(ConfigEntry configEntry)
      throws InitializationException, ConfigException
  {
    int msgID = MSGID_JMX_CONNHANDLER_DESCRIPTION_LISTEN_PORT;
    IntegerConfigAttribute portStub = new IntegerConfigAttribute(
        ATTR_LISTEN_PORT, getMessage(msgID), true, false, false, true, 1,