List of usage examples for javax.servlet Filter interface-usage
From source file org.neo4j.server.web.LimitRequestTimeFilter.java
/** * @author tbaum * @since 01.12.11 */ public class LimitRequestTimeFilter implements Filter { private static final Log LOG = LogFactory.getLog(LimitRequestTimeFilter.class);
From source file com.appeligo.search.entity.SetPermissionsInViewFilter.java
/** * The <code>OpenSessionInViewFilter</code> class * @author almilli */ public class SetPermissionsInViewFilter implements Filter { private static final Log log = LogFactory.getLog(SetPermissionsInViewFilter.class);
From source file org.apache.roller.weblogger.ui.core.filters.DebugFilter.java
/**
* A simple debugging filter.
*
* This filter is NOT mapped by default and is here only for Roller developers
* to use while they are working on the code and debugging things.
*
From source file coyote.commons.web.AuthFilter.java
/**
* An authentication and authorization filter to protect access to resources.
*
* <p>This filter ensures all requests have a session that are requesting
* access to private (non-public) resources.</p>
*/
From source file net.sourceforge.safr.jaas.web.LoginFilter.java
/** * @author Martin Krasser */ public abstract class LoginFilter implements Filter { private static final Log log = LogFactory.getLog(LoginFilter.class);
From source file de.uni_koeln.spinfo.maalr.webapp.i18n.InternationalUrlFilter.java
@Service("internationalUrlFilter") public class InternationalUrlFilter implements Filter { @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
From source file com.redhat.rhn.frontend.servlets.DumpFilter.java
/** * DumpFilter dumps the current request and response to the log file. * Useful for debugging filter and servlet development. * @version $Rev$ */ public class DumpFilter implements Filter {
From source file org.addsimplicity.anicetus.web.TelemetryServletFilter.java
/** * @author Dan Pritchett * */ public class TelemetryServletFilter implements Filter { private static final String s_PARENT_NAME = "x-anicetus-parent-guid";
From source file com.dangdang.ddframe.job.security.WwwAuthFilter.java
/**
* ?.
*
* @author zhangliang
*/
@Slf4j
From source file edu.northwestern.bioinformatics.studycalendar.security.internal.ApiAuthenticationFilter.java
/**
* Processes the "Authorization" header if present and validates the given credentials.
* If the credentials are valid, the appropriate {@link org.acegisecurity.Authentication} is
* added to the security context. Otherwise (i.e., if the credentials are invalid or there's no
* Authorization header), nothing is done. If the specific request requires authorization, it is
* the responsibility of the API implementation (i.e., the Restlet bits) to challenge the user.