Interface Auth0Auth
-
- All Superinterfaces:
OpenIDConnectAuth
public interface Auth0Auth extends OpenIDConnectAuth
Simplified factory to create anOAuth2Auth
for Okta Auth0.- Author:
- Alexei KLENIN
-
-
Method Summary
Static Methods Modifier and Type Method Description static OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret, String tenant, String audience)
Create a OAuth2Auth provider for Okta Auth0static OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret, String tenant, String audience, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Okta Auth0
-
-
-
Method Detail
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret, String tenant, String audience)
Create a OAuth2Auth provider for Okta Auth0- Parameters:
clientId
- the client id given to you by Okta Auth0clientSecret
- the client secret given to you by Okta Auth0tenant
- the tenantaudience
- the audience
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret, String tenant, String audience, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Okta Auth0- Parameters:
clientId
- the client id given to you by Okta Auth0clientSecret
- the client secret given to you by Okta Auth0tenant
- the tenantaudience
- the audiencehttpClientOptions
- custom http client options
-
-