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

neil_a_wilson
10.23.2006 bb40b9a02cf40af0349d8e3576f51133d264d4b1
opends/src/server/org/opends/server/api/plugin/PostDisconnectPluginResult.java
@@ -46,9 +46,18 @@
  /**
   * A post-disconnect plugin result instance that indicates all
   * processing was successful.
   */
  public static final PostDisconnectPluginResult SUCCESS =
       new PostDisconnectPluginResult();
  // Indicates whether any further post-disconnect plugins should be
  // invoked for this connection.
  private boolean continuePluginProcessing;
  private final boolean continuePluginProcessing;
@@ -57,11 +66,9 @@
   * settings.  In this case, it will indicate that the further
   * post-disconnect plugin processing should be allowed.
   */
  public PostDisconnectPluginResult()
  private PostDisconnectPluginResult()
  {
    assert debugConstructor(CLASS_NAME);
    this.continuePluginProcessing = true;
    this(true);
  }
@@ -102,25 +109,6 @@
  /**
   * Specifies whether any further post-disconnect plugins should be
   * invoked for this connection.
   *
   * @param  continuePluginProcessing  Specifies whether any further
   *                                   post-disconnect plugins should
   *                                   be invoked for this connection.
   */
  public void setContinuePluginProcessing(
                   boolean continuePluginProcessing)
  {
    assert debugEnter(CLASS_NAME, "setContinuePluginProcessing",
                      String.valueOf(continuePluginProcessing));
    this.continuePluginProcessing = continuePluginProcessing;
  }
  /**
   * Retrieves a string representation of this post-connect plugin
   * result.
   *