Beantwortet
Check if User belong to particular group
hey,
How can we check programatically if User belongs to a particluar group or not?
Thanks,
Himanshu
hey,
How can we check programatically if User belongs to a particluar group or not?
Thanks,
Himanshu
Create a simple servlet and use User Manager API
Session session = resourceResolver.adaptTo(Session.class); UserManager userManager = resourceResolver.adaptTo(UserManager.class); /* to get the current user */ Authorizable auth = userManager.getAuthorizable(session.getUserID()); /* to get the groups it is member of */ Iterator<Group> groups = auth.memberOf(); Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.