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