List of usage examples for javax.servlet Filter interface-usage
From source file de.hska.ld.core.config.filter.CrossOriginFilter.java
@Component public class CrossOriginFilter implements Filter { public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException { HttpServletRequest request = (HttpServletRequest) req;
From source file org.apache.nutch.tools.proxy.LogDebugHandler.java
public class LogDebugHandler extends AbstractTestbedHandler implements Filter { private static final Log LOG = LogFactory.getLog(LogDebugHandler.class); @Override public void handle(Request req, HttpServletResponse res, String target, int dispatch) throws IOException, ServletException {
From source file fr.putnami.pwt.plugin.ajaxbot.filter.DeleteCacheFilter.java
public class DeleteCacheFilter implements Filter { private static final String FILTER_PARAM_CACHE_FOLDER = "cacheFolder"; private static final String QUERY_PARAM_RESET_FILTER = "_ajaxbotfilter_cache_reset_";
From source file com.pagecrumb.proxy.ProxyFilter.java
/**
*
* Filter to identify whether the response needs to be "transformed"
* i.e., whether to parse and modify URLs from the HTML that is
* returned
*
From source file com.example.HoneycombFilter.java
public class HoneycombFilter implements Filter { private final Log log = LogFactory.getLog(HoneycombFilter.class); private volatile LibHoney libhoney;
From source file jp.co.opentone.bsol.linkbinder.view.filter.AbstractFilter.java
/** * ?. * @author opentone */ public abstract class AbstractFilter implements Filter {
From source file com.thruzero.common.web.filter.InitFilter.java
/** * Init filter that prepares the Config implementation to read from the config file. * * @author George Norman */ public class InitFilter implements Filter {
From source file org.soulwing.cas.filter.SimpleAuthorizationFilter.java
/**
* An authorization filter for which a list of authorized usernames is
* configured as an initialization parameter.
*
* @author Carl Harris
*
From source file com.netflix.spinnaker.fiat.shared.FiatAuthenticationFilter.java
@Slf4j @Component public class FiatAuthenticationFilter implements Filter { @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
From source file org.seasar.teeda.extension.filter.MultipartFormDataFilter.java
/** * @author koichik */ public class MultipartFormDataFilter implements Filter { public static final String DOFILTER_CALLED = "org.seasar.teeda.extension.filter.MultipartFormDataFilter.doFilterCalled";