Example usage for org.springframework.web.filter GenericFilterBean subclass-usage

List of usage examples for org.springframework.web.filter GenericFilterBean subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.filter GenericFilterBean subclass-usage.

Usage

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

/**
 *
 * @author radek
 */
public class StatelessAuthenticationFilter extends GenericFilterBean {

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

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

From source file org.carewebframework.logging.log4j.LogContextFilter.java

/**
 * GenericFilterBean which handles thread-specific logging context.
 */
public class LogContextFilter extends GenericFilterBean {

    /**

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

/**
During the authentication attempt, which is dealt by the attemptAuthentication method, we retrieve the username and password from the request. After they are retrieved, we use the AuthenticationManager to verify that these details match with an existing user. If it does, we enter the successfulAuthentication method. In this method we fetch the name from the authenticated user, and pass it on to TokenAuthenticationService, which will then add a JWT to the response.
 */
public class JWTAuthenticationFilter extends GenericFilterBean {
    @Autowired
    private JWTService tokenService;

From source file fi.hsl.parkandride.MDCFilter.java

@Component
public class MDCFilter extends GenericFilterBean {

    public static final String LIIPI_APPLICATION_ID = "Liipi-Application-Id";

    public static final Pattern APP_ID_PATTERN = Pattern.compile("[a-zA-Z0-9_\\-\\./]{3,20}");

From source file com.cisco.ca.cstg.pdi.filter.SessionTimeoutFilter.java

public class SessionTimeoutFilter extends GenericFilterBean implements Constants {

    private static final Logger LOGGER = LoggerFactory.getLogger(SessionTimeoutFilter.class);

    private static final String SKIP_PROJ_ROOT_REQUEST = "listProjects.html";
    private static final String LOCAL_URL = "http://localhost:8080/";

From source file com.odobo.springsecurity.rest.core.RestAuthenticationFilter.java

/**
 * Created by mariscal on 13/06/14.
 */
public class RestAuthenticationFilter extends GenericFilterBean {

    @Override

From source file grails.plugin.cache.web.filter.NoOpFilter.java

/**
 * Based on grails.plugin.springcache.web.NoOpFilter.
 *
 * @author Rob Fletcher
 * @author Burt Beckwith
 */

From source file org.cloudfoundry.identity.web.NoOpFilter.java

public class NoOpFilter extends GenericFilterBean {

    @Override
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
            throws IOException, ServletException {
        chain.doFilter(request, response);

From source file com.alliander.osgp.shared.security.AuthenticationTokenProcessingFilter.java

/**
 * Checks the Request headers for presence of valid authentication token.
 */
public class AuthenticationTokenProcessingFilter extends GenericFilterBean {

    private static final Logger LOGGER = LoggerFactory.getLogger(AuthenticationTokenProcessingFilter.class);