Class OAuthFlow

java.lang.Object
io.vertx.reactivex.openapi.contract.OAuthFlow
All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate

public class OAuthFlow extends Object implements io.vertx.lang.rx.RxDelegate
Represents an OAuth Flow Object (the configuration).

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<OAuthFlow> __TYPE_ARG
  • Constructor Details

    • OAuthFlow

      public OAuthFlow(OAuthFlow delegate)
    • OAuthFlow

      public OAuthFlow(Object delegate)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getDelegate

      public OAuthFlow getDelegate()
      Specified by:
      getDelegate in interface io.vertx.lang.rx.RxDelegate
    • getAuthorizationUrl

      public String getAuthorizationUrl()
      The authorization URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.
      Returns:
    • getTokenUrl

      public String getTokenUrl()
      The token URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.
      Returns:
    • getRefreshUrl

      public String getRefreshUrl()
      The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.
      Returns:
    • getScopes

      public Set<String> getScopes()
      The available scopes for the OAuth2 security scheme. A set of the scope names. The set MAY be empty.
      Returns:
    • newInstance

      public static OAuthFlow newInstance(OAuthFlow arg)