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

The following examples show how to use org.apache.cxf.rs.security.oauth2.utils.OAuthConstants#CLIENT_CREDENTIALS_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: SamlBearerClientCredentialsGrant.java    From cxf with Apache License 2.0 4 votes vote down vote up
public SamlBearerClientCredentialsGrant(String assertion, boolean encoded, String scope) {
    super(OAuthConstants.CLIENT_CREDENTIALS_GRANT, assertion, encoded, scope);
}
 
Example 2
Source File: JwtBearerClientCredentialsGrant.java    From cxf with Apache License 2.0 4 votes vote down vote up
public JwtBearerClientCredentialsGrant(String assertion, boolean encoded, String scope) {
    super(OAuthConstants.CLIENT_CREDENTIALS_GRANT, assertion, encoded, scope);
}
 
Example 3
Source File: ClientCredentialsGrantHandler.java    From cxf with Apache License 2.0 4 votes vote down vote up
public ClientCredentialsGrantHandler() {
    super(OAuthConstants.CLIENT_CREDENTIALS_GRANT);
}
 
Example 4
Source File: ClientCredentialsGrant.java    From cxf with Apache License 2.0 4 votes vote down vote up
public ClientCredentialsGrant(String scope, String audience) {
    super(OAuthConstants.CLIENT_CREDENTIALS_GRANT, scope, audience);
}