Class CorsFilter
- All Implemented Interfaces:
ContainerRequestFilter,ContainerResponseFilter
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidcheckOrigin(ContainerRequestContext requestContext, String origin) voidfilter(ContainerRequestContext requestContext) Filter method called before a request has been dispatched to a resource.voidfilter(ContainerRequestContext requestContext, ContainerResponseContext responseContext) Filter method called after a response has been provided for a request (either by arequest filteror by a matched resource method.Will allow all by default.Put "*" if you want to accept all origins.intbooleanDefaults to true.protected voidpreflight(String origin, ContainerRequestContext requestContext) voidsetAllowCredentials(boolean allowCredentials) voidsetAllowedHeaders(String allowedHeaders) Will allow all by default comma delimited string for Access-Control-Allow-Headers.voidsetAllowedMethods(String allowedMethods) Will allow all by default comma delimited string for Access-Control-Allow-Methods.voidsetCorsMaxAge(int corsMaxAge) voidsetExposedHeaders(String exposedHeaders) Comma delimited list.
-
Field Details
-
allowCredentials
protected boolean allowCredentials -
allowedMethods
-
allowedHeaders
-
exposedHeaders
-
corsMaxAge
protected int corsMaxAge -
allowedOrigins
-
-
Constructor Details
-
CorsFilter
public CorsFilter()
-
-
Method Details
-
getAllowedOrigins
Put "*" if you want to accept all origins.- Returns:
- allowed origins
-
isAllowCredentials
public boolean isAllowCredentials()Defaults to true.- Returns:
- allow credentials
-
setAllowCredentials
public void setAllowCredentials(boolean allowCredentials) -
getAllowedMethods
Will allow all by default.- Returns:
- allowed methods
-
setAllowedMethods
Will allow all by default comma delimited string for Access-Control-Allow-Methods.- Parameters:
allowedMethods- allowed methods
-
getAllowedHeaders
-
setAllowedHeaders
Will allow all by default comma delimited string for Access-Control-Allow-Headers.- Parameters:
allowedHeaders- allowed headers
-
getCorsMaxAge
public int getCorsMaxAge() -
setCorsMaxAge
public void setCorsMaxAge(int corsMaxAge) -
getExposedHeaders
-
setExposedHeaders
Comma delimited list.- Parameters:
exposedHeaders- exposed headers
-
filter
Description copied from interface:ContainerRequestFilterFilter method called before a request has been dispatched to a resource.Filters in the filter chain are ordered according to their
jakarta.annotation.Priorityclass-level annotation value. If a request filter produces a response by callingContainerRequestContext.abortWith(jakarta.ws.rs.core.Response)method, the execution of the (either pre-match or post-match) request filter chain is stopped and the response is passed to the corresponding response filter chain (either pre-match or post-match). For example, a pre-match caching filter may produce a response in this way, which would effectively skip any post-match request filters as well as post-match response filters. Note however that a responses produced in this manner would still be processed by the pre-match response filter chain.- Specified by:
filterin interfaceContainerRequestFilter- Parameters:
requestContext- request context.- Throws:
IOException- if an I/O exception occurs.- See Also:
-
filter
public void filter(ContainerRequestContext requestContext, ContainerResponseContext responseContext) throws IOException Description copied from interface:ContainerResponseFilterFilter method called after a response has been provided for a request (either by arequest filteror by a matched resource method.Filters in the filter chain are ordered according to their
jakarta.annotation.Priorityclass-level annotation value.- Specified by:
filterin interfaceContainerResponseFilter- Parameters:
requestContext- request context.responseContext- response context.- Throws:
IOException- if an I/O exception occurs.
-
preflight
- Throws:
IOException
-
checkOrigin
-