List of usage examples for javax.servlet Filter interface-usage
From source file org.osaf.cosmo.acegisecurity.providers.ticket.TicketAuthenticationClearingFilter.java
/** * Servlet filter that detects if a ticket is associated with * the current context and clears the context. */ public class TicketAuthenticationClearingFilter implements Filter { private static final Log log = LogFactory.getLog(TicketAuthenticationClearingFilter.class);
From source file nu.yona.server.rest.ErrorLoggingFilter.java
@Component public class ErrorLoggingFilter implements Filter { @FunctionalInterface public interface LogMethod { void log(String format, Object... insertions); }
From source file org.opencastproject.kernel.filter.proxy.TransparentProxyFilter.java
/** * This filter is looking for <code>X-FORWARDED-FOR</code> headers in the HTTP request and if found sets it as the * original IP. */ public class TransparentProxyFilter implements Filter {
From source file com.dangdang.ddframe.job.lite.console.security.WwwAuthFilter.java
@Slf4j public final class WwwAuthFilter implements Filter { private static final String AUTH_PREFIX = "Basic "; private String username = "root";
From source file com.salesmanager.core.security.AuthFilter.java
/** * Filter for managing authentication/autorization * */ public abstract class AuthFilter implements Filter {
From source file org.italiangrid.storm.webdav.server.LogRequestFilter.java
public class LogRequestFilter implements Filter { public static final Logger log = LoggerFactory.getLogger(LogRequestFilter.class); @Override public void destroy() {
From source file be.fedict.eid.idp.webapp.XSSProtectionFilter.java
/**
* X-XSS-Protection filter.
*
* @author Frank Cornelis
*
*/
From source file com.appeligo.search.actions.SessionCreatorFilter.java
/** * Hack filter to always create a session. * @author fear */ public class SessionCreatorFilter implements Filter {
From source file org.apache.roller.weblogger.ui.core.filters.LoadSaltFilter.java
/** * Filter generates a unique salt value for use in any HTTP form generated by * Roller. See also: ValidateSalt filter. */ public class LoadSaltFilter implements Filter { private static Log log = LogFactory.getLog(LoadSaltFilter.class);
From source file org.apache.maven.wagon.tck.http.fixture.AuthSnoopFilter.java
public class AuthSnoopFilter implements Filter { private static Logger logger = Logger.getLogger(AuthSnoopFilter.class); public void destroy() { }