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 org.springside.modules.security.jcaptcha.JCaptchaFilter.java

 * ??SpringSecurity???URL?URL,SpringSecurity?.
 * ?filter?SpringSecurity???????.
 * 
 * web.xml??
 * 1.failureUrl -- ??URL, SpringSecurity???, ?.
 * 2.filterProcessesUrl -- ??URL, SpringSecurity?, "/j_spring_security_check".

From source file org.echocat.marquardt.service.CertificateAuthenticationFilter.java

/**
 * Implement this filter to enable login at a marquardt service (not authority!).
 * <p>
 * Clients must add a X-Certificate header which contains their (Base64 encoded) certificate payload.
 * Clients must sign their header using their PrivateKey matching to the PublicKey in the certificate.
 * This signature signes all headers including X-Certificate.<br>

From source file org.roda.wui.filter.CasApiAuthFilter.java

/**
 * CAS authentication filter for API requests.
 *
 * @author Rui Castro <rui.castro@gmail.com>
 */
public class CasApiAuthFilter implements Filter {

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

/**
 * Filter base class that guarantees to be just executed once per request,
 * on any servlet container. It provides a {@link #doFilterInternal}
 * method with HttpServletRequest and HttpServletResponse arguments.
 *
 * <p>The {@link #getAlreadyFilteredAttributeName} method determines how

From source file monasca.common.middleware.TokenAuth.java

/**
 * A token-based authentication filter. This filter uses Thrift protocol to
 * communicate with the CS server. The token to validate is set via the header
 * {@link #TOKEN}.
 * <p/>
 * A token is required to validate. However, if no token is presented, the

From source file org.openo.gso.servicegateway.filter.LoadSalt.java

/**
 * filter to create salt for request<br>
 * <p>
 * </p>
 * 
 * @author

From source file ru.runa.common.web.filter.HTTPFilterBase.java

/**
 * Base class for http filters.
 */
public abstract class HTTPFilterBase implements Filter {
    protected final Log log = LogFactory.getLog(getClass());

From source file eu.delving.core.util.ThemeFilter.java

/**
 * Put necessary things into thread local for subsequent use during handling of the request
 *
 * @author Gerald de Jong <gerald@delving.eu>
 */

From source file com.delmar.core.web.filter.ExportFilter.java

/**
 * <p>
 * Allow the author of an included JSP page to reset the content type to something else (like a binary stream), and then
 * write the new info back as the exclusive response, clearing the buffers of all previously added content.
 * </p>
 * <p>

From source file com.vmware.photon.controller.api.common.filters.LoggingFilter.java

/**
 * Logs every request and response and sets the request id context.
 */
public class LoggingFilter implements Filter {
    private static final Logger logger = LoggerFactory.getLogger(LoggingFilter.class);