Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Stardust/Knowledge Base/API/JavaAPICookbook/CheckingUserSpecificRole

Purpose

There are instances where you need to find if a particular user is assigned under a specific role.You don't have to iterate over a list of grants to achieve this.

Solution

QueryService qs = sf.getQueryService();
 
UserQuery userQuery = new UserQuery();
userQuery.getFilter().add(UserQuery.ACCOUNT.isEqual("Bang")); //User
 
ParticipantInfo pInfo = qs.getParticipant("Administrator"); //Role, This can be model specific
 
userQuery.where(ParticipantAssociationFilter.forParticipant(pInfo));
 
User retUser = qs.findFirstUser(userQuery);
System.out.println("retUser:::::::::" + retUser);

Copyright © Eclipse Foundation, Inc. All Rights Reserved.