Class AuthRoleBean
- java.lang.Object
-
- com.bloomreach.xm.repository.security.AuthRoleBean
-
-
Constructor Summary
Constructors Constructor Description AuthRoleBean(AuthRole other)
AuthRoleBean(String name, String domainPath, String role)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(AuthRole o)
boolean
equals(Object obj)
String
getDescription()
String
getDomainPath()
TreeSet<String>
getGroups()
String
getName()
String
getPath()
String
getRole()
String
getUserRole()
TreeSet<String>
getUsers()
int
hashCode()
void
setDescription(String description)
void
setUserRole(String userRole)
-
-
-
Method Detail
-
getName
public String getName()
-
getDomainPath
public String getDomainPath()
- Specified by:
getDomainPath
in interfaceAuthRole
- Returns:
- the parent (domain) node path of the authrole
-
getPath
public String getPath()
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceAuthRole
- Returns:
- the description of the authrole
-
setDescription
public void setDescription(String description)
-
getRole
public String getRole()
-
getUserRole
public String getUserRole()
- Specified by:
getUserRole
in interfaceAuthRole
- Returns:
- the userrole of the authrole
-
setUserRole
public void setUserRole(String userRole)
-
compareTo
public int compareTo(AuthRole o)
- Specified by:
compareTo
in interfaceComparable<AuthRole>
-
-