cancel
Showing results for 
Search instead for 
Did you mean: 

Group name and its members

redbull
Champ in-the-making
Champ in-the-making
Hi,
in my custom jsp I need to show a list with the members of a specific group.
Which Alfresco service I should use?
Thank you
2 REPLIES 2

mitpatoliya
Star Collaborator
Star Collaborator
AuthorityService

redbull
Champ in-the-making
Champ in-the-making
thank Mittal for your tip…
I use this code:

   private AuthorityService authorityService;
   ………………..
   ………………..
   final Set<String> authoritiesList = authorityService.getContainedAuthorities(AuthorityType.USER, "GROUP_writer", false);

where "writer" is the group name.