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 cn.vlabs.duckling.vwb.CPSFilter.java

/**
 * @date 2015414
 * @author xzj
 */
public class CPSFilter implements Filter {

From source file de.itsvs.cwtrpc.controller.UnexpectedErrorFilter.java

/**
 * @author Volker Schmidt
 * @since 0.9
 */
public class UnexpectedErrorFilter implements Filter {
    private final Log log = LogFactory.getLog(UnexpectedErrorFilter.class);

From source file com.seyren.core.security.AuthenticationTokenFilter.java

public class AuthenticationTokenFilter implements Filter {
    private final UserDetailsService userService;
    private final SeyrenConfig seyrenConfig;

    @Inject
    public AuthenticationTokenFilter(UserDetailsService userService, SeyrenConfig seyrenConfig) {

From source file com.pocketgorilla.stripesem.TransactionFilter.java

/** Takes care of closing out the ${@link EntityTransaction} associated
 * with the current HTTP request.
 *
 * @author Mike Baranczak
 */
public class TransactionFilter implements Filter {

From source file com.roncoo.pay.controller.filter.UserFilter.java

/**
 * ??
 * www.roncoo.com
 * @author zenghao
 */
public class UserFilter implements Filter {

From source file org.wings.recorder.Recorder.java

/**
 * @author hengels
 */
public class Recorder implements Filter {
    private final transient static Log log = LogFactory.getLog(Recorder.class);
    public static final String RECORDER_START = "recorder_start";

From source file com.google.sampling.experiential.server.WhitelistFilter.java

public class WhitelistFilter implements Filter {

    private DBWhitelist dbWhitelist;
    private static final Logger log = Logger.getLogger(WhitelistFilter.class.getName());

    @Override

From source file edu.vt.middleware.servlet.filter.SessionAttributeFilter.java

/**
 * <code>SessionAttributeFilter</code> is a filter which can be used to redirect
 * requests based on attributes found in the session.
 *
 * @author  Middleware Services
 * @version  $Revision$ $Date$

From source file org.openmrs.module.fhir.filter.AuthorizationFilter.java

/**
 * Filter intended for all /ws/fhir calls that allows the user to authenticate via Basic
 * authentication. (It will not fail on invalid or missing credentials. We count on the API to throw
 * exceptions if an unauthenticated user tries to do something they are not allowed to do.) <br/>
 * <br/>
 * IP address authorization is also performed based on the global property:

From source file com.dangdang.ddframe.job.console.security.WwwAuthFilter.java

@Slf4j
public final class WwwAuthFilter implements Filter {

    private static final String AUTH_PREFIX = "Basic ";

    private String username = "root";