Java Code Examples for org.apache.cxf.rs.security.oauth2.utils.OAuthConstants#IMPLICIT_GRANT

The following examples show how to use org.apache.cxf.rs.security.oauth2.utils.OAuthConstants#IMPLICIT_GRANT . 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: ImplicitGrantService.java    From cxf with Apache License 2.0 4 votes vote down vote up
public ImplicitGrantService() {
    super(OAuthConstants.TOKEN_RESPONSE_TYPE, OAuthConstants.IMPLICIT_GRANT);
}
 
Example 2
Source File: ImplicitGrantService.java    From cxf with Apache License 2.0 4 votes vote down vote up
protected ImplicitGrantService(Set<String> responseTypes) {
    super(responseTypes, OAuthConstants.IMPLICIT_GRANT);
}
 
Example 3
Source File: OidcHybridService.java    From cxf with Apache License 2.0 4 votes vote down vote up
public OidcHybridService(boolean hybridOnly) {
    super(getResponseTypes(hybridOnly), OAuthConstants.IMPLICIT_GRANT);
}