Example usage for org.springframework.security.web AuthenticationEntryPoint interface-usage

List of usage examples for org.springframework.security.web AuthenticationEntryPoint interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.web AuthenticationEntryPoint interface-usage.

Usage

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

public class AuthorizePromptNoneEntryPoint implements AuthenticationEntryPoint {

    private static Log logger = LogFactory.getLog(AuthorizePromptNoneEntryPoint.class);

    private final AuthenticationFailureHandler failureHandler;
    private final ClientDetailsService clientDetailsService;

From source file org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint.java

/**
 * Used by the {@link ExceptionTranslationFilter} to commence a form login authentication
 * via the {@link UsernamePasswordAuthenticationFilter}.
 * <p>
 * Holds the location of the login form in the {@code loginFormUrl} property, and uses
 * that to build a redirect URL to the login page. Alternatively, an absolute URL can be

From source file ch.ge.ve.protopoc.jwt.JwtAuthenticationEntryPoint.java

@Component
public class JwtAuthenticationEntryPoint implements AuthenticationEntryPoint, Serializable {

    private static final long serialVersionUID = -8970718410437077606L;

    @Override

From source file nl.surfnet.mujina.spring.SAMLAuthenticationEntryPoint.java

public class SAMLAuthenticationEntryPoint implements AuthenticationEntryPoint {

    private final static Logger log = LoggerFactory.getLogger(SAMLAuthenticationEntryPoint.class);

    private final TimeService timeService;
    private final IDService idService;

From source file br.com.sg.security.SgLoginUrlAuthenticationEntryPoint.java

/**
 * Used by the {@link ExceptionTranslationFilter} to commence a form login
 * authentication via the {@link UsernamePasswordAuthenticationFilter}. This
 * object holds the location of the login form, relative to the web app context
 * path, and is used to commence a redirect to that form.
 * <p>

From source file nl.surfnet.coin.api.saml.SAMLAuthenticationEntryPoint.java

/**
 * SamlAuthenticationEntryPoint.java
 *
 */
public class SAMLAuthenticationEntryPoint implements AuthenticationEntryPoint {

From source file org.slc.sli.dashboard.security.SLIAuthenticationEntryPoint.java

/**
 * Spring interceptor for calls that don't have a session
 * This implementation simply redirects to the login URL
 *
 * @author dkornishev
 * @author rbloh

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