Class DefaultBearerTokenResolver
- java.lang.Object
-
- org.springframework.security.oauth2.server.resource.web.DefaultBearerTokenResolver
-
- All Implemented Interfaces:
BearerTokenResolver
public final class DefaultBearerTokenResolver extends java.lang.Object implements BearerTokenResolver
The defaultBearerTokenResolverimplementation based on RFC 6750.- Since:
- 5.1
- See Also:
- RFC 6750 Section 2: Authenticated Requests
-
-
Constructor Summary
Constructors Constructor Description DefaultBearerTokenResolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringresolve(javax.servlet.http.HttpServletRequest request)Resolve any Bearer Token value from the request.voidsetAllowFormEncodedBodyParameter(boolean allowFormEncodedBodyParameter)Set if transport of access token using form-encoded body parameter is supported.voidsetAllowUriQueryParameter(boolean allowUriQueryParameter)Set if transport of access token using URI query parameter is supported.voidsetBearerTokenHeaderName(java.lang.String bearerTokenHeaderName)Set this value to configure what header is checked when resolving a Bearer Token.
-
-
-
Method Detail
-
resolve
public java.lang.String resolve(javax.servlet.http.HttpServletRequest request)
Description copied from interface:BearerTokenResolverResolve any Bearer Token value from the request.- Specified by:
resolvein interfaceBearerTokenResolver- Parameters:
request- the request- Returns:
- the Bearer Token value or
nullif none found
-
setAllowFormEncodedBodyParameter
public void setAllowFormEncodedBodyParameter(boolean allowFormEncodedBodyParameter)
Set if transport of access token using form-encoded body parameter is supported. Defaults tofalse.- Parameters:
allowFormEncodedBodyParameter- if the form-encoded body parameter is supported
-
setAllowUriQueryParameter
public void setAllowUriQueryParameter(boolean allowUriQueryParameter)
Set if transport of access token using URI query parameter is supported. Defaults tofalse. The spec recommends against using this mechanism for sending bearer tokens, and even goes as far as stating that it was only included for completeness.- Parameters:
allowUriQueryParameter- if the URI query parameter is supported
-
setBearerTokenHeaderName
public void setBearerTokenHeaderName(java.lang.String bearerTokenHeaderName)
Set this value to configure what header is checked when resolving a Bearer Token. This value is defaulted toHttpHeaders.AUTHORIZATION. This allows other headers to be used as the Bearer Token source such asHttpHeaders.PROXY_AUTHORIZATION- Parameters:
bearerTokenHeaderName- the header to check when retrieving the Bearer Token.- Since:
- 5.4
-
-