You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/03/16 06:09:26 UTC

[incubator-inlong-website] branch master updated: [INLONG-307] add Add Shiro interface for manager authorization (#308)

This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 98a60f4  [INLONG-307] add Add Shiro interface for manager authorization (#308)
98a60f4 is described below

commit 98a60f4f46ee6ed85a368472131b0c91d03b06d6
Author: wardli <95...@users.noreply.github.com>
AuthorDate: Wed Mar 16 14:09:22 2022 +0800

    [INLONG-307] add Add Shiro interface for manager authorization (#308)
---
 docs/development/inlong_manager_shiro_plugin.md                        | 3 +++
 .../current/development/inlong_manager_shiro_plugin.md                 | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/docs/development/inlong_manager_shiro_plugin.md b/docs/development/inlong_manager_shiro_plugin.md
index 2a418c5..1c9dc47 100644
--- a/docs/development/inlong_manager_shiro_plugin.md
+++ b/docs/development/inlong_manager_shiro_plugin.md
@@ -32,6 +32,9 @@ public interface InlongShiro {
     CredentialsMatcher getCredentialsMatcher();
 
     ShiroFilterFactoryBean getShiroFilter(SecurityManager securityManager);
+
+    AuthorizationAttributeSourceAdvisor getAuthorizationAttributeSourceAdvisor(SecurityManager securityManager);
+
 }
 ```
 
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/inlong_manager_shiro_plugin.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/inlong_manager_shiro_plugin.md
index e94c188..31ef639 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/inlong_manager_shiro_plugin.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/development/inlong_manager_shiro_plugin.md
@@ -32,6 +32,9 @@ public interface InlongShiro {
     CredentialsMatcher getCredentialsMatcher();
 
     ShiroFilterFactoryBean getShiroFilter(SecurityManager securityManager);
+
+    AuthorizationAttributeSourceAdvisor getAuthorizationAttributeSourceAdvisor(SecurityManager securityManager);
+
 }
 ```