Method Summary |
|
public String | createGroup(String groupname, String description) Create a new Group and return the corresponding MBean Name. |
public String | createRole(String rolename, String description) Create a new Role and return the corresponding MBean Name. |
public String | createUser(String username, String password, String fullName) Create a new User and return the corresponding MBean Name. |
public String | findGroup(String groupname) Return the MBean Name for the specified group name (if any);
otherwise return null . |
public String | findRole(String rolename) Return the MBean Name for the specified role name (if any);
otherwise return null . |
public String | findUser(String username) Return the MBean Name for the specified user name (if any);
otherwise return null . |
public String[] | getGroups() Return the MBean Names of all groups defined in this database. |
public String[] | getRoles() Return the MBean Names of all roles defined in this database. |
public String[] | getUsers() Return the MBean Names of all users defined in this database. |
public void | removeGroup(String groupname) Remove an existing group and destroy the corresponding MBean. |
public void | removeRole(String rolename) Remove an existing role and destroy the corresponding MBean. |
public void | removeUser(String username) Remove an existing user and destroy the corresponding MBean. |