@NotMutable @ThreadSafety(level=COMPLETELY_THREADSAFE) public final class PostOperationPluginResult extends java.lang.Object implements java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
static PostOperationPluginResult |
SUCCESS
A predefined result instance that indicates all processing completed
successfully.
|
| Constructor and Description |
|---|
PostOperationPluginResult(boolean connectionTerminated,
boolean continuePluginProcessing)
Creates a new post-operation plugin result with the provided information.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
connectionTerminated()
Indicates whether the client connection was terminated by the plugin.
|
boolean |
continuePluginProcessing()
Indicates whether to continue processing other post-operation plugins for
the operation.
|
java.lang.String |
toString()
Retrieves a string representation of this post-operation plugin result.
|
public static final PostOperationPluginResult SUCCESS
public PostOperationPluginResult(boolean connectionTerminated, boolean continuePluginProcessing)
connectionTerminated - Indicates whether the client connection
was terminated by the plugin.continuePluginProcessing - Indicates whether to continue processing
other post-operation plugins for the
operation.public boolean connectionTerminated()
true if the client connection was terminated by the
plugin, or false if not.public boolean continuePluginProcessing()
true if the server should continue processing other
post-operation plugins for the operation, or false if
not.public java.lang.String toString()
toString in class java.lang.Object