org.springframework.social.oauth2.OAuth2Version Java Examples
The following examples show how to use
org.springframework.social.oauth2.OAuth2Version.
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: WechatImpl.java From spring-social-wechat with Apache License 2.0 | 4 votes |
@Override protected OAuth2Version getOAuth2Version() { return OAuth2Version.BEARER_DRAFT_2; }
Example #2
Source File: Yahoo2Template.java From cloudstreetmarket.com with GNU General Public License v3.0 | 4 votes |
@Override protected OAuth2Version getOAuth2Version() { return OAuth2Version.BEARER; }
Example #3
Source File: PlusImpl.java From google-plus-java-api with Apache License 2.0 | 4 votes |
@Override protected OAuth2Version getOAuth2Version() { return OAuth2Version.DRAFT_10; }