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 org.zilverline.web.RequestDumperFilter.java

/**
 * Request filter that dumps interesting state information about a request to the associated servlet context log file, before
 * allowing the servlet to process the request in the usual way. This can be installed as needed to assist in debugging problems.
 * Used for debugging.
 * 
 * Modified version of the tomcat distribution now uses commons.logging.

From source file org.ambraproject.admin.filter.RedirectToAmbraFilter.java

/**
 * Filter used to redirect actions that should be handled by the associated ambra stack (e.g. fetching the image for an
 * issue image, browsing an issue, etc.)
 *
 * @author Alex Kudick  1/18/12
 */

From source file org.kuali.kfs.sys.web.filter.SessionExpirationFilter.java

/**
 * A filter that applies the configuration controlled redirect for a session timeout
 */
public class SessionExpirationFilter implements Filter {

    @Override

From source file org.opentripplanner.jsonp.JsonpCallbackFilter.java

public class JsonpCallbackFilter implements Filter {

    private static Log log = LogFactory.getLog(JsonpCallbackFilter.class);

    public void init(FilterConfig fConfig) throws ServletException {
    }

From source file org.tsm.concharto.web.filter.ResponseHeaderFilter.java

/**
 * For setting http headers for various files.  NOTE: if this gets
 * much more complicated, consider using Spring Framework filter 
 * classes to configure instead of the limited web.xml features
 *
 */

From source file org.springframework.security.captcha.CaptchaValidationProcessingFilter.java

/**
 * Filter for web integration of the {@link CaptchaServiceProxy}.
 * <p>
 * It basically intercept calls containing the specific validation parameter, uses the {@link CaptchaServiceProxy} to
 * validate the request, and update the {@link CaptchaSecurityContext} if the request passed the validation.
 * <p>

From source file com.ayu.filter.CheckFilter.java

public class CheckFilter implements Filter {
    SimpleCache lruCache;
    long time;
    Timer t, t1;
    ClassPathXmlApplicationContext appContext;
    RegularService regService;

From source file org.osaf.cosmo.acegisecurity.providers.ticket.TicketProcessingFilter.java

/**
 * Servlet filter that populates the
 * {@link org.springframework.security.ContextHolder} with a
 * {@link TicketAuthenticationToken} if needed.
 */
public class TicketProcessingFilter implements Filter {

From source file org.hifivault.geo.location.filters.GeoLocationFilter.java

/**
 * This filters resolves the GEO location of each visitor based on their IP
 * 
 * @author Wouter Heijke / HiFiVault.org
 */
public class GeoLocationFilter implements Filter {