授权用户使用 ITIM 中分配的组

发布于 2024-11-02 09:36:57 字数 104 浏览 0 评论 0原文

我是 ITIM 的新手。我正在开发一个 JAVA 应用程序。我想根据用户分配到的组来授权用户。我怎样才能做到这一点?

是否有任何 api 可以获取用户角色/组并通过它们进行授权?

I am new to ITIM. I am working on an application in JAVA. I want to authorize users based on groups they are assigned to. How can I do that?

Is there any api that can fetch user roles/groups by which I can authorize them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

困倦 2024-11-09 09:36:57

系统用户会有一个'erroles'属性,通过它我们可以获取用户组/角色的信息。

Person对象获取DistinguishedName。使 PersonMO 对象具有类似于 new PersonMO(platform, subject, person.getDistinguishedName()); 的构造函数

Make new AccountManager(platform, subject);

这将为帐户集合 accountManager.getAccounts(personMO, LocaleCreator.getLocale());

获取 getSystemUserDN(userId);PersonDao 类将有助于实现这一点。

Make new SystemUserMO(m_platform, m_subject, new DistinguishedName(systemUserDN));

systemUserMO.getData().getRoles() 获取角色/组

干杯 Imran Tariq

The system user will have an attribute of ‘erroles’ through which we can get information of user groups/Roles.

Get DistinguishedName from Person object. Make PersonMO object having constructor like new PersonMO(platform, subject, person.getDistinguishedName());

Make new AccountManager(platform, subject);

This will give accounts collection accountManager.getAccounts(personMO, LocaleCreator.getLocale());

Get getSystemUserDN(userId);. PersonDao class will help in getting this.

Make new SystemUserMO(m_platform, m_subject, new DistinguishedName(systemUserDN));

Get the roles/Groups from systemUserMO.getData().getRoles()

Cheers Imran Tariq

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文