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

fguigues
12.13.2008 d90a8f4889fdc359bfe5f089b937b303a4d58973
opends/src/server/org/opends/server/core/networkgroups/NetworkGroupStatistics.java
@@ -69,12 +69,10 @@
  /**
   * Constructor.
   * @param networkGroup The network group owning these stats
   * @param instanceName The name of the stat object
   */
  public NetworkGroupStatistics(
          NetworkGroup networkGroup, String instanceName) {
    super("LDAP Statistics Monitor Provider");
    this.instanceName = instanceName;
  public NetworkGroupStatistics(NetworkGroup networkGroup) {
    super(networkGroup.getID());
    this.instanceName = networkGroup.getID();
    this.networkGroup = networkGroup;
    DirectoryServer.registerMonitorProvider(this);
  }
@@ -148,7 +146,7 @@
   * {@inheritDoc}
   */
  public String getMonitorInstanceName() {
    return instanceName;
      return this.instanceName+",cn=Network Groups";
  }
  /**