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

jvergara
18.30.2009 b0b67e3b5117eab7f7e490c1a19633b2afdf6f1c
Fix for issue 3801 (Monitoring Connection Handler : keep the same format)

Do not display a ficticious address. If a connection handler has no address defined in its configuration, only show the port of the connection handler.
1 files modified
4 ■■■■ changed files
opends/src/guitools/org/opends/guitools/controlpanel/datamodel/ConnectionHandlerTableModel.java 4 ●●●● patch | view | raw | blame | history
opends/src/guitools/org/opends/guitools/controlpanel/datamodel/ConnectionHandlerTableModel.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Copyright 2008-2009 Sun Microsystems, Inc.
 */
package org.opends.guitools.controlpanel.datamodel;
@@ -265,7 +265,7 @@
    {
      if (desc.getPort() > 0)
      {
        returnValue = "0.0.0.0:"+desc.getPort();
        returnValue = String.valueOf(desc.getPort());
      }
      else
      {