Interface StripeAuth
-
public interface StripeAuth
Simplified factory to create anOAuth2Auth
for Stripe.- Author:
- Paulo Lopes
-
-
Method Summary
Static Methods Modifier and Type Method Description static OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Stripestatic OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Stripe
-
-
-
Method Detail
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for Stripe- Parameters:
clientId
- the client id given to you by StripeclientSecret
- the client secret given to you by Stripe
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for Stripe- Parameters:
clientId
- the client id given to you by StripeclientSecret
- the client secret given to you by StripehttpClientOptions
- custom http client options
-
-