From a803316edef6fe13c7e7b4cd3bedb1d789a732b1 Mon Sep 17 00:00:00 2001 From: zhongyujiang Date: Fri, 8 Aug 2025 17:21:44 +0800 Subject: [PATCH] fix(docs): update BasePolarisAuthenticator to DefaultAuthenticator --- site/content/in-dev/unreleased/realm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/in-dev/unreleased/realm.md b/site/content/in-dev/unreleased/realm.md index 67465a4b7d..4e0cc1ce25 100644 --- a/site/content/in-dev/unreleased/realm.md +++ b/site/content/in-dev/unreleased/realm.md @@ -46,7 +46,7 @@ This ensures that each realm's data is stored separately. **RealmContext:** It is a key concept used to identify and resolve the context in which operations are performed. For example `DefaultRealmContextResolver`, a realm is resolved from request headers, and operations are performed based on the resolved realm identifier. -**Authentication and Authorization:** For example, in `BasePolarisAuthenticator`, `RealmContext` is used to provide context about the current security domain, which is used to retrieve the correct `PolarisMetastoreManager` that manages all Polaris entities and associated grant records metadata for +**Authentication and Authorization:** For example, in `DefaultAuthenticator`, `RealmContext` is used to provide context about the current security domain, which is used to retrieve the correct `PolarisMetastoreManager` that manages all Polaris entities and associated grant records metadata for authorization. **Isolation:** In methods like `createEntityManagerFactory(@Nonnull RealmContext realmContext)` from `PolarisEclipseLinkPersistenceUnit` interface, the realm context influence how resources are created or managed based on the security policies of that realm.