Interface UrlInputRequest

All Superinterfaces:
InputRequest

@Immutable public non-sealed interface UrlInputRequest extends InputRequest
Requests user input by opening a URL (e.g. for OAuth or form fill).
  • Method Details

    • message

      String message()
      Prompt message shown to the user.
    • elicitationId

      String elicitationId()
      Identifier linking the response back to the elicitation context.
    • url

      String url()
      URL to open for user input.
    • check

      @Check default void check()
    • builder

      static UrlInputRequest.Builder builder()
    • of

      static UrlInputRequest of(String message, String elicitationId, String url)