| org.objectweb.jonas.security.realm.principals.UserMBean
All known Subclasses: org.objectweb.jonas.security.realm.principals.User,
UserMBean | public interface UserMBean (Code) | | This interface defines the MBean method for the User
author: Florent Benoit |
addGroup | void addGroup(String group)(Code) | | Add the specified group to this user
Parameters: group - the group to add |
addRole | void addRole(String role)(Code) | | Add a role to this user
Parameters: role - the given role |
getArrayGroups | String[] getArrayGroups()(Code) | | Get the groups
the array of the groups |
getArrayRoles | String[] getArrayRoles()(Code) | | Get the roles
the array of the roles |
getName | String getName()(Code) | | Get the name of this user
the name of this user |
getPassword | String getPassword()(Code) | | Get the password of this user
the password of this user |
removeGroup | void removeGroup(String group)(Code) | | Remove a group from this user
Parameters: group - the given group |
removeRole | void removeRole(String role)(Code) | | Remove a role from this user
Parameters: role - the given role |
setPassword | void setPassword(String password)(Code) | | Set the password of this user
Parameters: password - password of the user |
|
|