Interface BoxAuth
-
public interface BoxAuth
Simplified factory to create anOAuth2Auth
for box.com.- 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 App.netstatic OAuth2Auth
create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for App.net
-
-
-
Method Detail
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret)
Create a OAuth2Auth provider for App.net- Parameters:
clientId
- the client id given to you by box.comclientSecret
- the client secret given to you by box.com
-
create
static OAuth2Auth create(Vertx vertx, String clientId, String clientSecret, HttpClientOptions httpClientOptions)
Create a OAuth2Auth provider for App.net- Parameters:
clientId
- the client id given to you by box.comclientSecret
- the client secret given to you by box.comhttpClientOptions
- custom http client options
-
-