1
0
mirror of synced 2026-07-20 01:55:08 +00:00

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 1ebb73856b
commit 9f970094e0
@@ -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