Interface UserGroup
- All Superinterfaces:
Securable, SecuredNotChild
- All Known Implementing Classes:
UserGroup
Represents a group of users whom are conferred a set of
GrantedAuthority.- Version:
- $Id$
- Author:
- ptan
-
Method Summary
Modifier and TypeMethodDescriptionCollection<? extends GroupAuthority> A set of authorities conferred by the group membership.Collection<? extends User> A set of users that belong to the group.getName()A unique name to identify the group.
-
Method Details
-
getName
String getName()A unique name to identify the group. -
getAuthorities
Collection<? extends GroupAuthority> getAuthorities()A set of authorities conferred by the group membership. -
getGroupMembers
Collection<? extends User> getGroupMembers()A set of users that belong to the group.
-