@NotMutable @ThreadSafety(level=COMPLETELY_THREADSAFE) public final class PostResponsePluginResult extends java.lang.Object implements java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
static PostResponsePluginResult |
SUCCESS
A predefined result instance that indicates all processing completed
successfully.
|
| Constructor and Description |
|---|
PostResponsePluginResult(boolean connectionTerminated,
boolean continuePluginProcessing)
Creates a new post-response 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-response plugins for
the operation.
|
java.lang.String |
toString()
Retrieves a string representation of this post-response plugin result.
|
public static final PostResponsePluginResult SUCCESS
public PostResponsePluginResult(boolean connectionTerminated, boolean continuePluginProcessing)
connectionTerminated - Indicates whether the client connection
was terminated by the plugin.continuePluginProcessing - Indicates whether to continue processing
other post-response 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