This is an automated email from the ASF dual-hosted git repository.
adutra pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new cfff798cb fix(docs): update BasePolarisAuthenticator to
DefaultAuthenticator (#2303)
cfff798cb is described below
commit cfff798cb31ed41c3e4c214519e4699cac822f6f
Author: Yujiang Zhong <[email protected]>
AuthorDate: Fri Aug 8 22:58:10 2025 +0800
fix(docs): update BasePolarisAuthenticator to DefaultAuthenticator (#2303)
---
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 67465a4b7..4e0cc1ce2 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.