Example usage for org.springframework.security.oauth2.provider.endpoint AbstractEndpoint subclass-usage

List of usage examples for org.springframework.security.oauth2.provider.endpoint AbstractEndpoint subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.provider.endpoint AbstractEndpoint subclass-usage.

Usage

From source file com.orcid.api.common.server.delegator.impl.OrcidClientCredentialEndPointDelegatorImpl.java

/**
 * @author Declan Newman (declan) Date: 18/04/2012
 */
@Component("orcidClientCredentialEndPointDelegator")
public class OrcidClientCredentialEndPointDelegatorImpl extends AbstractEndpoint
        implements OrcidClientCredentialEndPointDelegator {

From source file org.springframework.security.oauth2.provider.endpoint.AuthorizationEndpoint.java

/**
 * <p>
 * Implementation of the Authorization Endpoint from the OAuth2 specification. Accepts authorization requests, and
 * handles user approval if the grant type is authorization code. The tokens themselves are obtained from the
 * {@link TokenEndpoint Token Endpoint}, except in the implicit grant type (where they come from the Authorization
 * Endpoint via <code>response_type=token</code>.

From source file org.cloudfoundry.identity.uaa.oauth.UaaAuthorizationEndpoint.java

/**
 * Authorization endpoint that returns id_token's if requested.
 * This is a copy of AuthorizationEndpoint.java in
 * Spring Security Oauth2. As that code does not allow
 * for redirect responses to be customized, as desired by
 * https://github.com/fhanik/spring-security-oauth/compare/feature/extendable-redirect-generator?expand=1