Example usage for org.springframework.security.web.authentication AbstractAuthenticationProcessingFilter subclass-usage

List of usage examples for org.springframework.security.web.authentication AbstractAuthenticationProcessingFilter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.web.authentication AbstractAuthenticationProcessingFilter subclass-usage.

Usage

From source file com.mycompany.springrest.token.JwtAuthenticationFilter.java

/**
 *
 * @author ??
 */
public class JwtAuthenticationFilter extends AbstractAuthenticationProcessingFilter {

From source file com.hp.autonomy.hod.sso.SsoAuthenticationFilter.java

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**

From source file com.xavin.config.security.JWTLoginFilter.java

public class JWTLoginFilter extends AbstractAuthenticationProcessingFilter {

    public JWTLoginFilter(String url, AuthenticationManager authManager) {
        super(new AntPathRequestMatcher(url));
        setAuthenticationManager(authManager);
    }

From source file com.mec.Security.JWTLoginFilter.java

/**
We now have everything set up to use JWTs in our authentication process. We'll first take a look at the JWTLoginFilter class. This class will intercept POST requests on the /login path and attempt to authenticate the user. When the user is successfully authenticated, it will return a JWT in the Authorization header of the response
 */
public class JWTLoginFilter extends AbstractAuthenticationProcessingFilter {
    @Autowired
    private JWTService tokenAuth;

From source file com.sentinel.config.StatelessLoginFilter.java

/**
 * @author Vipin Kumar
 * @created 17-Feb-2016
 * 
 * TODO: Write a quick description of what the class is supposed to do.
 * 

From source file com.jiwhiz.TestAuthenticationFilter.java

/**
 * @author Yuan Ji
 *
 */
@Slf4j
public class TestAuthenticationFilter extends AbstractAuthenticationProcessingFilter {

From source file org.ligoj.app.http.security.DigestAuthenticationFilter.java

/**
 * Listen "/oauth/token?target=anypath", extract token, and send it to business to validate it.
 */
@Slf4j
public class DigestAuthenticationFilter extends AbstractAuthenticationProcessingFilter {

From source file cz.sohlich.workstack.security.StatelessLoginFilter.java

public class StatelessLoginFilter extends AbstractAuthenticationProcessingFilter {

    private final TokenAuthenticationService tokenAuthenticationService;
    private final MongoUserDetailService userDetailsService;

    public StatelessLoginFilter(String urlMapping, TokenAuthenticationService tokenAuthenticationService,

From source file org.dspace.app.rest.security.StatelessLoginFilter.java

/**
 * This class will filter login requests to try and authenticate them
 *
 * @author Frederic Van Reet (frederic dot vanreet at atmire dot com)
 * @author Tom Desair (tom dot desair at atmire dot com)
 */

From source file edu.umn.auth.MockAuthenticationFilter.java

/**
 * Processes a {@link MockAuthenticationToken}, and authenticates via Mock authenticator
 * 
 * @author <a href="mailto:ajz@umn.edu">Aaron J. Zirbes</a>
 */
class MockAuthenticationFilter extends AbstractAuthenticationProcessingFilter {