Interface ITestPromptConnectionRetVal


public interface ITestPromptConnectionRetVal
Describes the return value of a test connection call to a prompt query, see IPromptTypeService.testConnection(IPromptServiceType, ITestPromptConnectionParams, Object).
Since:
8.5.0
  • Method Summary

    Modifier and Type
    Method
    Description
    An optional list of messages describing the outcome of the test.
    boolean
    Whether the test was successful.
  • Method Details

    • messages

      List<String> messages()
      An optional list of messages describing the outcome of the test. If successful, this is interpreted as a list of informational messages. If not successful, this is interpreted as a list of error messages.
      Returns:
      A list of error messages, empty if successful.
    • success

      boolean success()
      Whether the test was successful.
      Returns:
      true if the test was successful, false otherwise