Example usage for javax.servlet Filter interface-usage

List of usage examples for javax.servlet Filter interface-usage

Introduction

In this page you can find the example usage for javax.servlet Filter interface-usage.

Usage

From source file com.flipkart.poseidon.filters.RequestGzipFilter.java

/**
 * Created by shrey.garg on 27/05/16.
 */
public class RequestGzipFilter implements Filter {
    @Override
    public void init(FilterConfig filterConfig) throws ServletException {

From source file com.earldouglas.filtre.Filtre.java

public class Filtre implements Filter {

    private Log log = LogFactory.getLog(getClass());
    private AddressManager addressManager = new AddressManager();

    public void init(FilterConfig filterConfig) throws ServletException {

From source file org.soulwing.cas.filter.FilterToBeanProxy.java

/**
 * A Filter that acts as a proxy for a Spring bean.  The idea for this
 * filter is due to the authors of the Acegi Security framework.
 *
 * @author Carl Harris
 */

From source file org.yawlfoundation.yawl.monitor.jsf.SessionTimeoutFilter.java

/**
 * Redirects a user action to the login page after a session timeout
 *
 * Author: Michael Adams
 * Date: 14/03/2008
 *

From source file AIR.Common.Web.Session.HttpRequestLoggerInitializerFilter.java

public class HttpRequestLoggerInitializerFilter implements Filter {
    private static long sequenceNumber = 0;
    private String prefix = null;
    @SuppressWarnings("unused")
    private boolean logRequestBodies = false;
    private static final Logger logger = LoggerFactory.getLogger(HttpRequestLoggerInitializerFilter.class);

From source file xbdd.webapp.rest.BasicAuthFilter.java

/**
 * Simple authentication filter that checks for basic authentication headers and otherwise defers to the realm's authentication mechanism.
 */
public class BasicAuthFilter implements Filter {

    private static final String AUTHORIZATION_HEADER = "Authorization";

From source file org.andresoviedo.util.spring.jee.HttpSessionWrapperFilter.java

/**
 * HttpSessionWrapper que wrappea la request. Se implementa debido a un "bug?" de la implementacin de la HttpSession del Weblogic.
 * <p>
 * Requiere (idealmente) que el listener de Spring HttpSessionMutexListener este registrado en la aplicacin para garantizar que se puede
 * sincronizar la sesin de usuario.
 * </p>

From source file uk.ac.ebi.eva.server.CORSResponseFilter.java

/**
 *
 * @author Cristina Yenyxe Gonzalez Garcia <cyenyxe@ebi.ac.uk>
 */
@Component
public class CORSResponseFilter implements Filter {

From source file org.soaplab.clients.spinet.filters.DefaultFilter.java

/**
 * This class filters all static pages by adding them "UTF-8"
 * character encoding and, when not known from the static file
 * extension, the MIME type "text/plain". Without a non-empty MIME
 * type, there would be no sense to add charater encoding - and we
 * need it for non-western characters. <p/>

From source file ru.org.linux.site.TemplateFilter.java

public class TemplateFilter implements Filter {
    private static final Log logger = LogFactory.getLog(TemplateFilter.class);

    private FilterConfig filterConfig;

    private Properties properties;