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

jvergara
19.43.2007 3b340b4379eb63f296e27afba224da8d8451520e
opends/src/guitools/org/opends/guitools/replicationcli/PreExternalInitializationUserData.java
@@ -36,16 +36,16 @@
 */
class PreExternalInitializationUserData extends MonoServerReplicationUserData
{
  private boolean onlyLocal;
  private boolean localOnly;
  /**
   * Whether the operation must be applied only on the local server or not.
   * @return <CODE>true</CODE> if the operation must be applied only on the
   * local server and <CODE>false</CODE> otherwise.
   */
  public boolean isOnlyLocal()
  public boolean isLocalOnly()
  {
    return onlyLocal;
    return localOnly;
  }
  /**
@@ -53,9 +53,9 @@
   * @param onlyLocal whether the operation must be applied only on the local
   * server or not.
   */
  public void setOnlyLocal(boolean onlyLocal)
  public void setLocalOnly(boolean onlyLocal)
  {
    this.onlyLocal = onlyLocal;
    this.localOnly = onlyLocal;
  }
}