org.scribe.builder.api.DefaultApi20 Java Examples

The following examples show how to use org.scribe.builder.api.DefaultApi20. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WeiXinOAuth20ServiceImpl.java    From cas4.0.x-server-wechat with Apache License 2.0 4 votes vote down vote up
public WeiXinOAuth20ServiceImpl(DefaultApi20 api, OAuthConfig config, int connectTimeout, int readTimeout, String proxyHost, int proxyPort) {
    super(api, config, connectTimeout, readTimeout, proxyHost, proxyPort);
}
 
Example #2
Source File: BitbucketApiService.java    From bitbucket-build-status-notifier-plugin with MIT License 4 votes vote down vote up
public BitbucketApiService(DefaultApi20 api, OAuthConfig config) {
    super(api, config);
    this.api = api;
    this.config = config;
}
 
Example #3
Source File: Google2Api.java    From jpa-invoicer with The Unlicense 4 votes vote down vote up
public GoogleOAuth2Service(DefaultApi20 api, OAuthConfig config) {
    super(api, config);
    this.api = api;
    this.config = config;
}
 
Example #4
Source File: SliApi.java    From secure-data-service with Apache License 2.0 4 votes vote down vote up
public SLIOauth20ServiceImpl(DefaultApi20 api, OAuthConfig config) {
    super(api, config);
    myApi = api;
    myConfig = config;
}
 
Example #5
Source File: OAuth2ServiceWrapper.java    From jerseyoauth2 with MIT License 4 votes vote down vote up
public OAuth2ServiceWrapper(OAuthService wrapped, DefaultApi20 api, OAuthConfig config)
{
	this.wrapped = wrapped;
	this.api = api;
	this.config = config;
}