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

Jean-Noel Rouvignac
06.19.2014 d6bda618737d3dbb319864f13305f679e916f808
opendj3-server-dev/src/server/org/opends/server/replication/service/ReplicationMonitor.java
@@ -42,13 +42,13 @@
 */
public class ReplicationMonitor extends MonitorProvider<MonitorProviderCfg>
{
  private ReplicationDomain domain;
  private final ReplicationDomain domain;
  /**
   * Create a new replication monitor.
   * @param domain the plugin which created the monitor
   */
  public ReplicationMonitor(ReplicationDomain domain)
  ReplicationMonitor(ReplicationDomain domain)
  {
    this.domain = domain;
  }
@@ -231,7 +231,7 @@
   * @param name the name of the attribute to add.
   * @param value The integer value of he attribute to add.
   */
  public static void addMonitorData(List<Attribute> attributes, String name,
  private static void addMonitorData(List<Attribute> attributes, String name,
      long value)
  {
    addMonitorData(attributes, name, String.valueOf(value));
@@ -245,7 +245,7 @@
   * @param name the name of the attribute to add.
   * @param value The String value of he attribute to add.
   */
  public static void addMonitorData(List<Attribute> attributes, String name,
  private static void addMonitorData(List<Attribute> attributes, String name,
      String value)
  {
    AttributeType type = DirectoryServer.getDefaultAttributeType(name);