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 alpine.filters.FqdnForwardFilter.java

/**
 * FqdnForwardFilter is a configurable Servlet Filter that can forward requests made to
 * a hostname or IP address to another host via a 301 redirect. The primary use case for
 * this filter is in conjunction with TLS hostname verification.
 *
 * Sample usage:

From source file org.smigo.config.RequestLogFilter.java

public class RequestLogFilter implements Filter {
    private final Logger log = LoggerFactory.getLogger(this.getClass());
    public static final String REQUEST_TIMER = "org.smigo.config.request-timer";
    private LogHandler logHandler;

    @Override

From source file org.kuali.rice.krad.filter.TestingLoginFilter.java

/**
 * Filter for establishing login for load testing.
 *
 * <p>Note this should only be used for load testing!</p>
 *
 * @author Kuali Rice Team (rice.collab@kuali.org)

From source file org.squale.welcom.struts.filter.WTimerFilter.java

/**
 * @author M327837 Pour changer le modle de ce commentaire de type gnr, allez  :
 *         Fentre&gt;Prfrences&gt;Java&gt;Gnration de code&gt;Code et commentaires
 */
public class WTimerFilter implements Filter {
    /** logger */

From source file alpine.filters.WhitelistUrlFilter.java

/**
 * WhitelistUrlFilter is a configurable Servlet Filter that can prevent access to
 * specific URLs. The filter will ignore access to all URLs that are not specifically
 * whitelisted. Ignored URLs result in a HTTP 404 response.
 *
 * The filter may be used when specific files or directories should not be accessible.

From source file org.apache.shindig.social.opensocial.hibernate.utils.OpenSessionInViewFilter.java

public class OpenSessionInViewFilter implements Filter {

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

    public void init(FilterConfig filterConfig) throws ServletException {
        logger.debug("Initialize Hibernate SessionFactory.");

From source file org.esigate.servlet.ProxyFilter.java

/**
 * {@link Filter} that can mix local and distant contents using EsiGate.
 * 
 * @author Francois-Xavier Bonnet
 * 
 */

From source file scouterx.webapp.framework.filter.CorsFilter.java

public class CorsFilter implements Filter {
    ConfigureAdaptor conf;

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

From source file info.magnolia.cms.filters.MultipartRequestFilter.java

/**
 * @author Sameer Charles
 * @version $Id: MultipartRequestFilter.java 2816 2006-05-03 11:20:05Z scharles $
 */
public class MultipartRequestFilter implements Filter {

From source file eu.freme.broker.tools.CORSFilter.java

/**
 * Filter that allows CORS for all all domains on all API endpoints.
 * 
 * @author Jan Nehring - jan.nehring@dfki.de
 */