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

jvergara
13.21.2007 73fe1b1f4f6c50c2e8d4de7b3b0e09f9c5f1365b
opendj-sdk/opends/src/guitools/org/opends/guitools/replicationcli/EnableReplicationUserData.java
@@ -49,6 +49,7 @@
  private boolean useStartTLS2;
  private boolean useSSL2;
  private int replicationPort2;
  private boolean replicateSchema = true;
  /**
   * Returns the host name of the first server.
@@ -322,4 +323,24 @@
  {
    this.replicationPort2 = replicationPort2;
  }
  /**
   * Returns <CODE>true</CODE> if the user asked to replicate schema and <CODE>
   * false</CODE> otherwise.
   * @return <CODE>true</CODE> if the user asked to replicate schema and <CODE>
   * false</CODE> otherwise.
   */
  public boolean replicateSchema()
  {
    return replicateSchema;
  }
  /**
   * Sets whether to replicate schema or not.
   * @param replicateSchema whether to replicate schema or not.
   */
  public void setReplicateSchema(boolean replicateSchema)
  {
    this.replicateSchema = replicateSchema;
  }
}