Example usage for javax.servlet FilterChain interface-usage

List of usage examples for javax.servlet FilterChain interface-usage

Introduction

In this page you can find the example usage for javax.servlet FilterChain interface-usage.

Usage

From source file org.force66.mock.servletapi.MockFilterChain.java

/**
 * Mock implementation for javax.servlet.FilterChain.
 * @author D. Ashmore
 *
 */
public class MockFilterChain implements FilterChain {

From source file org.openmrs.contrib.metadatarepository.webapp.filter.MockFilterChain.java

/**
 * Borrowed from the Display Tag project:
 * http://displaytag.sourceforge.net/xref-test/org/displaytag/filter/MockFilterSupport.html
 *
 * Todo: look into using Spring's MockFilterChain:
 * http://www.springframework.org/docs/api/org/springframework/mock/web/MockFilterChain.html

From source file org.jsecurity.web.servlet.FilterChainWrapper.java

/**
 * @author Les Hazlewood
 * @since 0.9
 */
public class FilterChainWrapper implements FilterChain {

From source file org.jsecurity.web.servlet.ProxiedFilterChain.java

/**
 * @author Les Hazlewood
 * @since 0.9
 */
public class ProxiedFilterChain implements FilterChain {

From source file de.micromata.genome.tpsb.httpmockup.MockFilterChain.java

/**
 * Adopted from genome servlet.
 * 
 * @author Roger Rene Kommer (r.kommer.extern@micromata.de)
 * 
 */

From source file com.nominanuda.solr.SpringMvcServerEmbed.java

public class SpringMvcServerEmbed implements FilterChain, HttpRequestHandler {
    private SolrDispatchFilter solrDispatchFilter;
    private String notHandledReqAttr = "NO_HANDLER_FOUND";

    public void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException {
        request.setAttribute(notHandledReqAttr, true);

From source file org.openhie.openempi.webapp.filter.MockFilterChain.java

/**
 * Borrowed from the Display Tag project:
 * http://displaytag.sourceforge.net/xref-test/org/displaytag/filter/MockFilterSupport.html
 *
 * Todo: look into using Spring's MockFilterChain:
 * http://www.springframework.org/docs/api/org/springframework/mock/web/MockFilterChain.html

From source file org.impalaframework.web.servlet.invocation.InvocationChain.java

/**
 * Implements Filter and Servlet invocation chain. 
 * Filters invoked in order (as long as each filter calls {@link FilterChain#doFilter(ServletRequest, ServletResponse)}.
 * Finally, {@link Servlet#service(ServletRequest, ServletResponse)} is invoked.
 * 
 * This allows for the same filter/servlet invocation orders as occurs in a web container.

From source file org.ireland.jnetty.dispatch.filterchain.FilterFilterChain.java

/**
 * Represents the next filter in a filter chain. The final filter will be the servlet itself.
 */
public class FilterFilterChain implements FilterChain {
    private static final Log log = LogFactory.getLog(FilterFilterChain.class.getName());

From source file com.gisgraphy.webapp.filter.MockFilterChain.java

/**
 * Borrowed from the Display Tag project:
 * http://displaytag.sourceforge.net/xref-test/org/displaytag/filter/MockFilterSupport.html
 * http://www.springframework.org/docs/api/org/springframework/mock/web/MockFilterChain.html
 */
public class MockFilterChain implements FilterChain {