List of usage examples for javax.servlet Filter interface-usage
From source file org.nuxeo.license.filter.LicenseGuardFilter.java
public class LicenseGuardFilter implements Filter, HttpSessionListener { protected final static Log log = LogFactory.getLog(LicenseGuardFilter.class); protected LicenseManager lm;
From source file com.navercorp.arcus.util.CrossOriginResourceSharingFilter.java
/**
* CORS(Cross-Origin Resource Sharing) filter.
*
* @author hoonmin
*/
@Component
From source file org.geoserver.filters.LoggingFilter.java
/** * Filter to log requests for debugging or statistics-gathering purposes. * * @author David Winslow <dwinslow@openplans.org> */ public class LoggingFilter implements Filter {
From source file com.luna.common.web.filter.BaseFilter.java
/**
* Ant
* ? http://jinnianshilongnian.iteye.com/blog/1416322
* <p/>
* ??
* <filter>
From source file cn.guoyukun.spring.web.filter.BaseFilter.java
/**
* Ant
* ? http://jinnianshilongnian.iteye.com/blog/1416322
* <p/>
* ??
* <filter>
From source file com.scm.test.common.web.filter.BaseFilter.java
/**
* Ant
* ? http://jinnianshilongnian.iteye.com/blog/1416322
* <p/>
* ??
* <filter>
From source file br.com.rzandonai.web.filter.AuthFilter.java
public class AuthFilter implements Filter { private static final String AUTH_ERROR_MSG = "Please make sure your request has an Authorization header", EXPIRE_ERROR_MSG = "Token has expired", JWT_ERROR_MSG = "Unable to parse JWT", JWT_INVALID_MSG = "Invalid JWT token";
From source file com.jayway.jaxrs.hateoas.web.RequestContextFilter.java
/** * @author Mattias Hellborg Arthursson * @author Kalle Stenflo */ public class RequestContextFilter implements Filter { @Override
From source file org.eclipse.orion.server.configurator.servlet.AuthorizationFilter.java
public class AuthorizationFilter implements Filter { public void init(FilterConfig filterConfig) throws ServletException { // nothing to do }
From source file com.janrain.servlet.ProcessTimeLoggingFilter.java
/** * Logs the processing time for each request. * * @author Jason Cowley */ public class ProcessTimeLoggingFilter implements Filter {