List of usage examples for javax.servlet Filter interface-usage
From source file org.wte4j.ui.server.filters.SessionContextFilter.java
public class SessionContextFilter implements Filter { private static final String ANONYMOUS_USER = "anonymous"; private ServiceContext serviceContext;
From source file at.molindo.notify.servlet.NotifyFilter.java
/** * simplistic version of {@link DelegatingFilterProxy} * * @author stf */ public class NotifyFilter implements Filter {
From source file org.kuali.kra.web.filter.PerformanceLoggingFilter.java
/**
* Part of KRA's {@link FilterChain} that handles timing a {@link HttpServletRequest} and reporting on the state of
* resource consumption. The following information gets logged from this {@link Filter} at the <b>INFO</b> log level.
* <ul>
* <li>Request execution time</li>
* <li>Initial resource consumption</li>
From source file org.jasig.cas.web.LicenceFilter.java
/** * Created by Xiaoqiaojun on 2016/7/27. */ public class LicenceFilter implements Filter { private long expiretime = 0l;
From source file com.anite.meercat.PersistenceTidyUpFilter.java
/**
* Filter to attatch and detatch the hibernate session from the thread for a
* request This filter assumes (which is true in tomcat) that a request remains
* on the same thread. If this is not true the results will be undefined.
*
* @author Ben.Gidley
From source file com.dianping.phoenix.router.ResponseFilter.java
/** * @author Leo Liang * */ public class ResponseFilter implements Filter { private static final List<String> ACCEPTED_CONTENT_TYPE = Arrays.asList(new String[] { "text/html" });
From source file org.jboss.dashboard.ui.controller.SecureHeaderFilter.java
/** * Security filter to protect application from XSS and frame busting attacks. */ public class SecureHeaderFilter implements Filter { private HTTPSettings httpSettings;
From source file org.kuali.hr.TestAutoLoginFilter.java
/**
* Automatically logs in with the user specified via filter init parameter {@link AutoLoginFilter#USER_PARAM_NAME}.
* <p>
* There are no guarantees made that the user specified is a valid user in the system.
* </p>
* <p>
From source file org.zalando.stups.stupsback.admin.SimpleCORSFilter.java
@Component public class SimpleCORSFilter implements Filter { private final Logger log = LoggerFactory.getLogger(SimpleCORSFilter.class); public SimpleCORSFilter() {
From source file org.yawlfoundation.yawl.resourcing.jsf.SessionTimeoutFilter.java
/**
* Redirects a user action to the login page after a session timeout
*
* Author: Michael Adams
* Date: 14/03/2008
*