Interface AbstractRole
-
- All Known Implementing Classes:
AbstractRoleBean
,RoleBean
,UserRoleBean
public interface AbstractRole
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
The description of the roleString
getName()
The name of the roleSet<String>
getRoles()
The same of role names which are implied (included or merged) with this role.boolean
isSystem()
Indicator if the role is used or reserved for system purposes.
-
-
-
Method Detail
-
getName
String getName()
The name of the role- Returns:
- The name of the role
-
getDescription
String getDescription()
The description of the role- Returns:
- the description of the role
-
isSystem
boolean isSystem()
Indicator if the role is used or reserved for system purposes.- Returns:
- true if this is a system role, false otherwise
-
-