Class PostConnectPluginResult

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static PostConnectPluginResult SUCCESS
      A predefined result instance that indicates all processing completed successfully.
    • Constructor Summary

      Constructors 
      Constructor Description
      PostConnectPluginResult​(boolean connectionTerminated, boolean continuePluginProcessing)
      Creates a new post-connect plugin result with the provided information.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • PostConnectPluginResult

        public PostConnectPluginResult​(boolean connectionTerminated,
                                       boolean continuePluginProcessing)
        Creates a new post-connect plugin result with the provided information.
        Parameters:
        connectionTerminated - Indicates whether the connection has been terminated.
        continuePluginProcessing - Indicates whether to continue processing other post-connect plugins for the connection.
    • Method Detail

      • connectionTerminated

        public boolean connectionTerminated()
        Indicates whether the connection has been terminated.
        Returns:
        true if the connection has been terminated, or false if not.
      • continuePluginProcessing

        public boolean continuePluginProcessing()
        Indicates whether to continue processing other post-connect plugins for the connection.
        Returns:
        true if the server should continue processing other post-connect plugins for the connection, or false if not.
      • toString

        public java.lang.String toString()
        Retrieves a string representation of this post-connect plugin result.
        Overrides:
        toString in class java.lang.Object
        Returns:
        A string representation of this post-connect plugin result.