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 com.amalto.core.servlet.TransactionFilter.java

public class TransactionFilter implements Filter {

    private static final Logger LOGGER = Logger.getLogger(TransactionFilter.class);

    public static final String TRANSACTION_ID = "transaction-id"; //$NON-NLS-1$

From source file com.cloudseal.spring.client.namespace.CloudSealLogoutImageFilter.java

/**
 * This filter is part of browser initiated single log out feature of CloudSeal IDP.
 * IDP knows which applications user is logged in into and when logout is performed simply
 * redirects user to them by means of showing images referencing this filter.
 * In case of success this filter shows success icon.  
 */

From source file org.apache.archiva.redback.integration.filter.SpringServletFilter.java

/**
 * SpringServletFilter
 *
 * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
 *
 */

From source file springfox.test.contract.swagger.CrossOriginFilter.java

/**
 * Allows cross origin for testing swagger docs using swagger-ui from local file system
 */
@Component
public class CrossOriginFilter implements Filter {
    private static final Logger log = LoggerFactory.getLogger(CrossOriginFilter.class);

From source file org.fishwife.jrugged.spring.PerformanceMonitorFilter.java

/**
 * This class is a standard Servlet filter that can be configured in web.xml to wrap all
 * request handling in a {@link org.fishwife.jrugged.PerformanceMonitor}. In order to get
 * useful access to the statistics, however, it is most convenient to make use of Spring's
 * {@link org.springframework.web.filter.DelegatingFilterProxy} in <code>web.xml</code> and
 * instantiate this filter within a Spring application context. This will allow the JMX

From source file com.chessoft.filter.AuthenticationFilter.java

@WebFilter(filterName = "authenticationFilter", urlPatterns = { "*.xhtml" })
public class AuthenticationFilter implements Filter {
    @Override
    public void init(FilterConfig filterConfig) throws ServletException {

    }

From source file de.berlios.jedi.presentation.editor.NewJispPackageFilter.java

/**
 * <p>
 * Checks if there is a JispPackage being created stored in session.<br>
 * If the hasn't the JispPackage,  it forwards to the
 * NewJispPackageAction, using the name of the intercepted Action as the
 * value of the NEXT_FORWARD_NAME key.<br>

From source file org.openmrs.module.patientportaltoolkit.web.filter.AuthorizationFilter.java

/**
 * Filter intended for all /ws/rest 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 org.kuali.coeus.sys.framework.controller.interceptor.SessionExpiredFilter.java

public class SessionExpiredFilter implements Filter {
    private static final Log LOG = LogFactory.getLog(SessionExpiredFilter.class);

    public void destroy() {
    }

From source file by.creepid.jsf.fileupload.UploadFilter.java

/**
 *
 * @author rusakovich
 */
public class UploadFilter implements Filter {