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.openmrs.web.dwr.DwrFilter.java

/**
 * Filters dwr requests and forwards them to the legacyui module dwr servlet
 */
public class DwrFilter implements Filter {

    protected final Log log = LogFactory.getLog(getClass());

From source file com.arvato.thoroughly.filter.AccessLogFilter.java

/**
 * Record client access information
 *
 */
public class AccessLogFilter implements Filter {

From source file it.cineca.pst.huborcid.web.filter.StaticResourcesProductionFilter.java

/**
 * This filter is used in production, to serve static resources generated by "grunt build".
 * <p/>
 * <p>
 * It is configured to serve resources from the "dist" directory, which is the Grunt
 * destination directory.

From source file edu.cornell.mannlib.vitro.webapp.filters.RequestModelsPrep.java

/**
 * This used to set up a lot of request-based objects. Now, most of them are
 * obtained through ModelAccess, which does not require setup here. However, it
 * does require teardown.
 * 
 * This is done in a filter, so it applies to both Servlets and JSPs.

From source file com.oak_yoga_studio.filters.MyFilter.java

/**
 *
 * @author weldu
 */
public class MyFilter implements Filter {

From source file com.hybris.integration.filter.AccessLogFilter.java

/**
 * Record client access information
 *
 */
public class AccessLogFilter implements Filter {

From source file fedora.server.security.servletfilters.FilterRestApiFlash.java

/**
 * Determines if the client is a flash player (based on a query string
 * value of 'flash' being set to true) and wraps the response to
 * guarantee only 2xx range response codes.
 *
 * Responses which would normally return with a status outside of the 2xx

From source file de.berlios.jedi.presentation.admin.LoginFilter.java

/**
 * <p>
 * Checks if the admin is logged in<br>
 * If admin isn't logged in, a forward to the login view is made.<br>
 * If admin is already logged in, the next element in the chain is invoked.
 * </p>

From source file net.maritimecloud.endorsement.config.SimpleCorsFilter.java

@Component
public class SimpleCorsFilter implements Filter {

    private final Logger log = LoggerFactory.getLogger(SimpleCorsFilter.class);

    public SimpleCorsFilter() {

From source file gov.nih.nci.ncicb.cadsr.cdebrowser.servlets.SessionFilter.java

/**
 * This Filter is used to make sure there is valid service insession for cdebrowser
 */
public class SessionFilter implements javax.servlet.Filter {
    private FilterConfig filterConfig;
    protected static Log log = LogFactory.getLog(SessionFilter.class.getName());