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

neil_a_wilson
10.23.2006 bb40b9a02cf40af0349d8e3576f51133d264d4b1
opends/src/server/org/opends/server/api/plugin/LDIFPluginResult.java
@@ -46,13 +46,22 @@
  /**
   * An LDIF plugin result instance that indicates all processing was
   * successful.
   */
  public static final LDIFPluginResult SUCCESS =
       new LDIFPluginResult();
  // Indicates whether any further LDIF import/export plugins should
  // be invoked for the associated entry.
  private boolean continuePluginProcessing;
  private final boolean continuePluginProcessing;
  // Indicates whether the associated entry should still be
  // imported/exported.
  private boolean continueEntryProcessing;
  private final boolean continueEntryProcessing;
@@ -61,12 +70,9 @@
   * this case, it will indicate that all processing should continue
   * as normal.
   */
  public LDIFPluginResult()
  private LDIFPluginResult()
  {
    assert debugConstructor(CLASS_NAME);
    this.continuePluginProcessing = true;
    this.continueEntryProcessing  = true;
    this(true, true);
  }
@@ -114,26 +120,6 @@
  /**
   * Specifies whether any further LDIF import/export plugins should
   * be invoked for the associated entry.
   *
   * @param  continuePluginProcessing  Specifies whether any further
   *                                   LDIF import/export plugins
   *                                   should be invoked for the
   *                                   associated entry.
   */
  public void setContinuePluginProcessing(
                   boolean continuePluginProcessing)
  {
    assert debugEnter(CLASS_NAME, "setContinuePluginProcessing",
                      String.valueOf(continuePluginProcessing));
    this.continuePluginProcessing = continuePluginProcessing;
  }
  /**
   * Indicates whether the associated entry should still be
   * imported/exported.
   *
@@ -150,25 +136,6 @@
  /**
   * Specifies whether the associated entry should still be
   * imported/exported.
   *
   * @param  continueEntryProcessing  Specifies whether the associated
   *                                  entry should still be
   *                                  imported/exported.
   */
  public void setContinueEntryProcessing(
                   boolean continueEntryProcessing)
  {
    assert debugEnter(CLASS_NAME, "setContinueEntryProcessing",
                      String.valueOf(continueEntryProcessing));
    this.continueEntryProcessing = continueEntryProcessing;
  }
  /**
   * Retrieves a string representation of this post-response plugin
   * result.
   *