Class OpenIDConnectAuth

java.lang.Object
io.vertx.rxjava3.ext.auth.oauth2.providers.OpenIDConnectAuth
All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate
Direct Known Subclasses:
AmazonCognitoAuth, AppleIdAuth, AzureADAuth, GoogleAuth, IBMCloudAuth, KeycloakAuth, SalesforceAuth, ZohoAuth

public class OpenIDConnectAuth extends Object implements io.vertx.lang.rx.RxDelegate
Simplified factory to create an OAuth2Auth for OpenID Connect.

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<OpenIDConnectAuth> __TYPE_ARG
  • Constructor Details

    • OpenIDConnectAuth

      public OpenIDConnectAuth(OpenIDConnectAuth delegate)
    • OpenIDConnectAuth

      public OpenIDConnectAuth(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 OpenIDConnectAuth getDelegate()
      Specified by:
      getDelegate in interface io.vertx.lang.rx.RxDelegate
    • discover

      public static Single<OAuth2Auth> discover(Vertx vertx, OAuth2Options config)
      Create a OAuth2Auth provider for OpenID Connect Discovery. The discovery will use the given site in the configuration options and attempt to load the well known descriptor.

      If the discovered config includes a json web key url, it will be also fetched and the JWKs will be loaded into the OAuth provider so tokens can be decoded.

      Parameters:
      vertx - the vertx instance
      config - the initial config, it should contain a site url
      Returns:
      future with the instantiated Oauth2 provider instance handler
    • rxDiscover

      public static Single<OAuth2Auth> rxDiscover(Vertx vertx, OAuth2Options config)
      Create a OAuth2Auth provider for OpenID Connect Discovery. The discovery will use the given site in the configuration options and attempt to load the well known descriptor.

      If the discovered config includes a json web key url, it will be also fetched and the JWKs will be loaded into the OAuth provider so tokens can be decoded.

      Parameters:
      vertx - the vertx instance
      config - the initial config, it should contain a site url
      Returns:
      future with the instantiated Oauth2 provider instance handler
    • newInstance

      public static OpenIDConnectAuth newInstance(OpenIDConnectAuth arg)