Example usage for org.springframework.security.oauth.provider OAuthProcessingFilterEntryPoint subclass-usage

List of usage examples for org.springframework.security.oauth.provider OAuthProcessingFilterEntryPoint subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth.provider OAuthProcessingFilterEntryPoint subclass-usage.

Usage

From source file ltistarter.oauth.MyOAuthProcessingFilterEntryPointImpl.java

/**
 * Shows how to handle OAuth failures in a special way if desired (just logs it for now)
 */
@Component
public class MyOAuthProcessingFilterEntryPointImpl extends OAuthProcessingFilterEntryPoint {

From source file org.jasig.ssp.util.security.lti.LtiLaunchErrorHandler.java

/**
 * Centralized error handling for both the LTI OAuth filter and processing that occurs downstream.
 * Has to extend {@link OAuthProcessingFilterEntryPoint} to satisfy {@link OAuthProviderProcessingFilter}.
 * Implementing {@link AuthenticationEntryPoint} is not sufficient.
 */
@Service("ltiLaunchErrorHandler")