Example usage for javax.servlet Filter interface-usage

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

Introduction

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

Usage

From source file edu.cornell.mannlib.vitro.webapp.filters.CharsetEncodingFilter.java

public class CharsetEncodingFilter implements Filter {

    @Override
    public void init(FilterConfig filterConfig) throws ServletException {
        // Nothing to set up
    }

From source file com.assignment4.security.SaltFilter.java

public class SaltFilter implements Filter {

    @Override
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
            throws IOException, ServletException {

From source file name.martingeisse.trading_game.platform.fakecdn.FakeCdnFilter.java

/**
 * This filter implements the fake CDN web interface.
 */
public final class FakeCdnFilter implements Filter {

    /**

From source file UpperCaseFilter.java

public class UpperCaseFilter implements Filter {
    protected FilterConfig config;

    public void init(FilterConfig config) throws ServletException {
        this.config = config;
    }

From source file com.lyh.licenseworkflow.web.filter.LoginFilter.java

/**
 * @author kevin
 * @version Revision: 1.00 Date: 11-9-21?10:27
 * @Email liuyuhui007@gmail.com
 */
public class LoginFilter implements Filter {

From source file org.jasig.cas.client.util.DelegatingFilter.java

/**
 * A Delegating Filter looks up a parameter in the request object and matches
 * (either exact or using Regular Expressions) the value. If there is a match,
 * the associated filter is executed. Otherwise, the normal chain is executed.
 *
 * @author Scott Battaglia

From source file com.netease.channel.security.AuthenticatorFilter.java

/**
 * @author mengyan
 */
public class AuthenticatorFilter implements Filter {
    private static final Logger LOG = Logger.getLogger(AuthenticatorFilter.class);
    private String realm = "";

From source file com.pcms.filter.XssFilter.java

/**
 *
 * @author wx.pan
 */
public class XssFilter implements Filter {

From source file org.jasig.cas.client.util.ErrorRedirectFilter.java

/**
 * Filters that redirects to the supplied url based on an exception.  Exceptions and the urls are configured via
 * init filter name/param values.
 * <p>
 * If there is an exact match the filter uses that value.  If there's a non-exact match (i.e. inheritance), then the filter
 * uses the last value that matched.

From source file com.zeperdi.demo.webapp.DemoFilter.java

/**
 * Filters can perform many different types of functions:
 * <ul>
 * <li>Authentication-Blocking requests based on user identity.</li>
 * <li>Logging and auditing-Tracking users of a web application.</li>
 * <li>Image conversion-Scaling maps, and so on.</li>