Polish Resource Server Multi-tenancy Docs

Issue gh-7532
This commit is contained in:
Josh Cummings 2020-03-24 15:24:43 -06:00
parent 933104d2d6
commit 8872d8b7d0
No known key found for this signature in database
GPG Key ID: 49EF60DD7FF83443
1 changed files with 3 additions and 2 deletions

View File

@ -1604,8 +1604,7 @@ AuthenticationManagerResolver<HttpServletRequest> tokenAuthenticationManagerReso
OpaqueTokenAuthenticationProvider opaqueToken = opaqueToken();
return request -> {
String token = bearerToken.resolve(request);
if (isAJwt(token)) {
if (useJwt(request)) {
return jwt::authenticate;
} else {
return opaqueToken::authenticate;
@ -1614,6 +1613,8 @@ AuthenticationManagerResolver<HttpServletRequest> tokenAuthenticationManagerReso
}
----
NOTE: The implementation of `useJwt(HttpServletRequest)` will likely depend on custom request material like the path.
And then specify this `AuthenticationManagerResolver` in the DSL:
.Authentication Manager Resolver