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

ludovicp
31.21.2010 8ad03d13a55123c75a7c11fd1e4c14971e7296d9
opends/src/server/org/opends/server/tools/dsreplication/PreExternalInitializationUserData.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Copyright 2008-2010 Sun Microsystems, Inc.
 */
package org.opends.server.tools.dsreplication;
@@ -36,26 +36,4 @@
 */
class PreExternalInitializationUserData extends MonoServerReplicationUserData
{
  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 isLocalOnly()
  {
    return localOnly;
  }
  /**
   * Sets whether the operation must be applied only on the local server or not.
   * @param onlyLocal whether the operation must be applied only on the local
   * server or not.
   */
  public void setLocalOnly(boolean onlyLocal)
  {
    this.localOnly = onlyLocal;
  }
}