List of usage examples for javax.servlet Filter interface-usage
From source file cz.muni.fi.dndtroopsweb.security.ProtectFilter2.java
/** * * @author Karel Auf */ @WebFilter(urlPatterns = { "/hero/*" }) public class ProtectFilter2 implements Filter {
From source file com.javiermoreno.springboot.mvc.users.SimpleCORSFilter.java
@Component public class SimpleCORSFilter implements Filter { @Override public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
From source file org.openbaton.vnfm.api.SimpleCorsFilter.java
@Component @Order(Ordered.HIGHEST_PRECEDENCE) public class SimpleCorsFilter implements Filter { public SimpleCorsFilter() { }
From source file com.amalto.core.servlet.TransactionsGuardFilter.java
/** * A Servlet filter checking if the current thread has a current transaction * before and after executing the request. */ public class TransactionsGuardFilter implements Filter {
From source file org.orcid.solr.filter.SolrMigrationFilter.java
/** * * @author Will Simpson * */ public class SolrMigrationFilter implements Filter {
From source file cz.muni.fi.dndtroopsweb.security.ProtectFilter.java
/** * * @author Karel Auf */ @WebFilter(urlPatterns = { "/troop/*" }) public class ProtectFilter implements Filter {
From source file org.eclipse.skalli.view.internal.servlet.CssCachingFilter.java
/**
* <strong>Temporary</strong> solution to avoid caching of CSS files.
*
* Note that this sends a redirect to the client so that it doubles the number of requests.
* However for internal usage the solution is "good enough" and appending a query
* string with the version should be done in the HTML tag that includes the stylesheet as
From source file com.bsb.cms.commons.page.filter.PageFilter.java
/** * @author hongjian.liu * @version 1.0.0 2014-6-4 * @since 1.0 */ public class PageFilter implements Filter {
From source file com.zyeeda.framework.web.CharacterEncodingFilter.java
/**
* Charactor encoding filter.
* This filter is to fix the encoding problems that are caused by incorrect implementation of Web browsers.
*
* @author Rui Tang
* @version %I%, %G%
From source file gov.nih.nci.cabig.caaers.web.filters.XSSFilter.java
public class XSSFilter implements Filter { protected static final Log logger = LogFactory.getLog(XSSFilter.class); private static final String XFrameHeader = "X-Frame-Options"; private static final String XFrameSetting = "SAMEORIGIN";