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

Jean-Noel Rouvignac
13.35.2013 dc50d3e793098123cf7417713f2790e862e13bbb
opends/src/server/org/opends/server/protocols/ldap/LDAPStatistics.java
@@ -35,8 +35,9 @@
import static org.opends.server.util.ServerConstants.*;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.atomic.AtomicLong;
import org.opends.messages.Message;
import org.opends.server.admin.std.server.MonitorProviderCfg;
import org.opends.server.api.MonitorProvider;
@@ -198,10 +199,9 @@
   *         is requested.
   */
  @Override
  public ArrayList<Attribute> getMonitorData()
  public List<Attribute> getMonitorData()
  {
      ArrayList<Attribute> attrs = new ArrayList<Attribute>();
      List<Attribute> attrs = new ArrayList<Attribute>();
      long tmpAbandonRequests = abandonRequests.get();
      long tmpAddRequests = addRequests.get();
@@ -662,7 +662,7 @@
   *          The value to use for the attribute.
   * @return the constructed attribute.
   */
  private Attribute createAttribute(String name, String value)
  protected Attribute createAttribute(String name, String value)
  {
    AttributeType attrType =
      DirectoryServer.getAttributeType(name.toLowerCase());