Skip to main content

Notice: This Wiki is now read only and edits are no longer 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

< Stardust‎ | Knowledge Base
Revision as of 06:35, 19 March 2014 by Unnamed Poltroon (Talk) (Solution)

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.


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

Back to the top