| org.apache.catalina.Role
All known Subclasses: org.apache.catalina.users.AbstractRole,
Role | public interface Role extends Principal(Code) | | Abstract representation of a security role, suitable for use in
environments like JAAS that want to deal with Principals .
author: Craig R. McClanahan version: $Revision: 1.2 $ $Date: 2004/02/27 14:58:39 $ since: 4.1 |
getDescription | public String getDescription()(Code) | | Return the description of this role.
|
getRolename | public String getRolename()(Code) | | Return the role name of this role, which must be unique
within the scope of a
UserDatabase .
|
setDescription | public void setDescription(String description)(Code) | | Set the description of this role.
Parameters: description - The new description |
setRolename | public void setRolename(String rolename)(Code) | | Set the role name of this role, which must be unique
within the scope of a
UserDatabase .
Parameters: rolename - The new role name |
|
|