org.eclipse.jetty.servlets
Class CrossOriginFilter

java.lang.Object
  extended by org.eclipse.jetty.servlets.CrossOriginFilter
All Implemented Interfaces:
Filter

public class CrossOriginFilter
extends Object
implements Filter

Implementation of the cross-origin resource sharing.

A typical example is to use this filter to allow cross-domain cometd communication using the standard long polling transport instead of the JSONP transport (that is less efficient and less reactive to failures).

This filter allows the following configuration parameters:

A typical configuration could be:

 <web-app ...>
     ...
     <filter>
         <filter-name>cross-origin</filter-name>
         <filter-class>org.eclipse.jetty.servlets.CrossOriginFilter</filter-class>
     </filter>
     <filter-mapping>
         <filter-name>cross-origin</filter-name>
         <url-pattern>/cometd/*</url-pattern>
     </filter-mapping>
     ...
 </web-app>
 

Version:
$Revision$ $Date$

Field Summary
static String ACCESS_CONTROL_ALLOW_CREDENTIALS_HEADER
           
static String ACCESS_CONTROL_ALLOW_HEADERS_HEADER
           
static String ACCESS_CONTROL_ALLOW_METHODS_HEADER
           
static String ACCESS_CONTROL_ALLOW_ORIGIN_HEADER
           
static String ACCESS_CONTROL_MAX_AGE_HEADER
           
static String ACCESS_CONTROL_REQUEST_HEADERS_HEADER
           
static String ACCESS_CONTROL_REQUEST_METHOD_HEADER
           
static String ALLOW_CREDENTIALS_PARAM
           
static String ALLOWED_HEADERS_PARAM
           
static String ALLOWED_METHODS_PARAM
           
static String ALLOWED_ORIGINS_PARAM
           
static String PREFLIGHT_MAX_AGE_PARAM
           
 
Constructor Summary
CrossOriginFilter()
           
 
Method Summary
 void destroy()
           
 void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
           
 void init(FilterConfig config)
           
protected  boolean isEnabled(HttpServletRequest request)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ACCESS_CONTROL_REQUEST_METHOD_HEADER

public static final String ACCESS_CONTROL_REQUEST_METHOD_HEADER
See Also:
Constant Field Values

ACCESS_CONTROL_REQUEST_HEADERS_HEADER

public static final String ACCESS_CONTROL_REQUEST_HEADERS_HEADER
See Also:
Constant Field Values

ACCESS_CONTROL_ALLOW_ORIGIN_HEADER

public static final String ACCESS_CONTROL_ALLOW_ORIGIN_HEADER
See Also:
Constant Field Values

ACCESS_CONTROL_ALLOW_METHODS_HEADER

public static final String ACCESS_CONTROL_ALLOW_METHODS_HEADER
See Also:
Constant Field Values

ACCESS_CONTROL_ALLOW_HEADERS_HEADER

public static final String ACCESS_CONTROL_ALLOW_HEADERS_HEADER
See Also:
Constant Field Values

ACCESS_CONTROL_MAX_AGE_HEADER

public static final String ACCESS_CONTROL_MAX_AGE_HEADER
See Also:
Constant Field Values

ACCESS_CONTROL_ALLOW_CREDENTIALS_HEADER

public static final String ACCESS_CONTROL_ALLOW_CREDENTIALS_HEADER
See Also:
Constant Field Values

ALLOWED_ORIGINS_PARAM

public static final String ALLOWED_ORIGINS_PARAM
See Also:
Constant Field Values

ALLOWED_METHODS_PARAM

public static final String ALLOWED_METHODS_PARAM
See Also:
Constant Field Values

ALLOWED_HEADERS_PARAM

public static final String ALLOWED_HEADERS_PARAM
See Also:
Constant Field Values

PREFLIGHT_MAX_AGE_PARAM

public static final String PREFLIGHT_MAX_AGE_PARAM
See Also:
Constant Field Values

ALLOW_CREDENTIALS_PARAM

public static final String ALLOW_CREDENTIALS_PARAM
See Also:
Constant Field Values
Constructor Detail

CrossOriginFilter

public CrossOriginFilter()
Method Detail

init

public void init(FilterConfig config)
          throws ServletException
Specified by:
init in interface Filter
Throws:
ServletException

doFilter

public void doFilter(ServletRequest request,
                     ServletResponse response,
                     FilterChain chain)
              throws IOException,
                     ServletException
Specified by:
doFilter in interface Filter
Throws:
IOException
ServletException

isEnabled

protected boolean isEnabled(HttpServletRequest request)

destroy

public void destroy()
Specified by:
destroy in interface Filter


Copyright © 1995-2011 Mort Bay Consulting. All Rights Reserved.