From 77ba94e1db2febfa41675a8d6d9d6b2349c94cbc Mon Sep 17 00:00:00 2001 From: Yuriy Savchenko Date: Sat, 12 Feb 2022 14:35:14 +0300 Subject: [PATCH] Update docs to use multi-tenancy Closes gh-10572 --- .../pages/reactive/oauth2/resource-server/multitenancy.adoc | 2 +- .../pages/servlet/oauth2/resource-server/multitenancy.adoc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/modules/ROOT/pages/reactive/oauth2/resource-server/multitenancy.adoc b/docs/modules/ROOT/pages/reactive/oauth2/resource-server/multitenancy.adoc index 9138926b79..0b713f306d 100644 --- a/docs/modules/ROOT/pages/reactive/oauth2/resource-server/multitenancy.adoc +++ b/docs/modules/ROOT/pages/reactive/oauth2/resource-server/multitenancy.adoc @@ -1,4 +1,4 @@ -= OAuth 2.0 Resource Server Multitenancy += OAuth 2.0 Resource Server Multi-tenancy [[webflux-oauth2resourceserver-multitenancy]] == Multi-tenancy diff --git a/docs/modules/ROOT/pages/servlet/oauth2/resource-server/multitenancy.adoc b/docs/modules/ROOT/pages/servlet/oauth2/resource-server/multitenancy.adoc index 8bd734b29d..c7f10ed594 100644 --- a/docs/modules/ROOT/pages/servlet/oauth2/resource-server/multitenancy.adoc +++ b/docs/modules/ROOT/pages/servlet/oauth2/resource-server/multitenancy.adoc @@ -1,4 +1,4 @@ -= OAuth 2.0 Resource Server Multitenancy += OAuth 2.0 Resource Server Multi-tenancy [[oauth2reourceserver-opaqueandjwt]] == Supporting both JWT and Opaque Token @@ -100,7 +100,7 @@ In each case, there are two things that need to be done and trade-offs associate One way to differentiate tenants is by the issuer claim. Since the issuer claim accompanies signed JWTs, this can be done with the `JwtIssuerAuthenticationManagerResolver`, like so: -.Multitenancy Tenant by JWT Claim +.Multi-tenancy Tenant by JWT Claim ==== .Java [source,java,role="primary"]