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

jvergara
10.15.2009 04f01423caa7ce29c6ca93ceeb6775ecca2dd74b
opendj-sdk/opends/src/ads/org/opends/admin/ads/ReplicaDescriptor.java
@@ -43,6 +43,7 @@
  private int replicationId = -1;
  private int missingChanges = -1;
  private long ageOfOldestMissingChange = -1;
  private String backendName;
  /**
   * Returns the number of entries contained in the replica.
@@ -198,4 +199,22 @@
  {
    this.missingChanges = missingChanges;
  }
  /**
   * Returns the name of the backend where this replica is defined.
   * @return the name of the backend where this replica is defined.
   */
  public String getBackendName()
  {
    return backendName;
  }
  /**
   * Sets the name of the backend where this replica is defined.
   * @param backendName the name of the backend.
   */
  public void setBackendName(String backendName)
  {
    this.backendName = backendName;
  }
}