Interface ServiceBuilderOAuth20
-
- All Superinterfaces:
ServiceBuilderCommon
- All Known Implementing Classes:
ServiceBuilder
public interface ServiceBuilderOAuth20 extends ServiceBuilderCommon
-
-
Method Summary
Modifier and Type Method Description ServiceBuilderOAuth20
apiKey(String apiKey)
Configures the api keyServiceBuilderOAuth20
apiSecret(String apiSecret)
Configures the api secretOAuth20Service
build(DefaultApi20 api)
ServiceBuilderOAuth20
callback(String callback)
Adds an OAuth callback urlServiceBuilderOAuth20
defaultScope(String defaultScope)
Configures the default OAuth 2.0 scope.
You can request any uniq scope per each access token request usingAuthorizationUrlBuilder.scope(java.lang.String)
.
In case you're requesting always the same scope,
you can just set it here and do not provide scope param nowhere more.ServiceBuilderOAuth20
httpClient(HttpClient httpClient)
takes precedence over httpClientConfigServiceBuilderOAuth20
httpClientConfig(HttpClientConfig httpClientConfig)
ServiceBuilderOAuth20
responseType(String responseType)
ServiceBuilderOAuth20
userAgent(String userAgent)
-
-
-
Method Detail
-
callback
ServiceBuilderOAuth20 callback(String callback)
Description copied from interface:ServiceBuilderCommon
Adds an OAuth callback url- Specified by:
callback
in interfaceServiceBuilderCommon
- Parameters:
callback
- callback url. Must be a valid url or 'oob' (OAuthConstants.OOB
for out of band OAuth- Returns:
- the
ServiceBuilder
instance for method chaining
-
apiKey
ServiceBuilderOAuth20 apiKey(String apiKey)
Description copied from interface:ServiceBuilderCommon
Configures the api key- Specified by:
apiKey
in interfaceServiceBuilderCommon
- Parameters:
apiKey
- The api key for your application- Returns:
- the
ServiceBuilder
instance for method chaining
-
apiSecret
ServiceBuilderOAuth20 apiSecret(String apiSecret)
Description copied from interface:ServiceBuilderCommon
Configures the api secret- Specified by:
apiSecret
in interfaceServiceBuilderCommon
- Parameters:
apiSecret
- The api secret for your application- Returns:
- the
ServiceBuilder
instance for method chaining
-
httpClientConfig
ServiceBuilderOAuth20 httpClientConfig(HttpClientConfig httpClientConfig)
- Specified by:
httpClientConfig
in interfaceServiceBuilderCommon
-
httpClient
ServiceBuilderOAuth20 httpClient(HttpClient httpClient)
Description copied from interface:ServiceBuilderCommon
takes precedence over httpClientConfig- Specified by:
httpClient
in interfaceServiceBuilderCommon
- Parameters:
httpClient
- externally created HTTP client- Returns:
- the
ServiceBuilder
instance for method chaining
-
userAgent
ServiceBuilderOAuth20 userAgent(String userAgent)
- Specified by:
userAgent
in interfaceServiceBuilderCommon
-
responseType
ServiceBuilderOAuth20 responseType(String responseType)
-
defaultScope
ServiceBuilderOAuth20 defaultScope(String defaultScope)
Configures the default OAuth 2.0 scope.
You can request any uniq scope per each access token request usingAuthorizationUrlBuilder.scope(java.lang.String)
.
In case you're requesting always the same scope,
you can just set it here and do not provide scope param nowhere more.- Parameters:
defaultScope
- The OAuth scope, used as deafult- Returns:
- the
ServiceBuilder
instance for method chaining
-
build
OAuth20Service build(DefaultApi20 api)
-
-