Methods Summary |
---|
public java.lang.String | getDescription()Return the description of this role.
// ------------------------------------------------------------- Properties
return (this.description);
|
public java.lang.String | getName()Make the principal name the same as the role name.
return (getRolename());
|
public java.lang.String | getRolename()Return the role name of this role, which must be unique
within the scope of a {@link UserDatabase}.
return (this.rolename);
|
public abstract org.apache.catalina.UserDatabase | getUserDatabase()Return the {@link UserDatabase} within which this Role is defined.
|
public void | setDescription(java.lang.String description)Set the description of this role.
this.description = description;
|
public void | setRolename(java.lang.String rolename)Set the role name of this role, which must be unique
within the scope of a {@link UserDatabase}.
this.rolename = rolename;
|