Package org.apache.catalina.mbeans
Class DataSourceUserDatabaseMBean
java.lang.Object
org.apache.tomcat.util.modeler.BaseModelMBean
org.apache.catalina.mbeans.DataSourceUserDatabaseMBean
- All Implemented Interfaces:
DynamicMBean
,MBeanRegistration
,ModelMBeanNotificationBroadcaster
,NotificationBroadcaster
A ModelMBean implementation for the org.apache.catalina.users.DataSourceUserDatabase
component.
- Author:
- Craig R. McClanahan
-
Field Summary
Modifier and TypeFieldDescriptionprotected final ManagedBean
TheManagedBean
information describing this MBean.protected final Registry
The configuration information registry for our managed beans.Fields inherited from class org.apache.tomcat.util.modeler.BaseModelMBean
attributeBroadcaster, generalBroadcaster, managedBean, oname, resource, resourceType
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addGroupRole
(String groupname, String rolename) Add role to a group.void
addUserGroup
(String username, String groupname) Add group to user.void
addUserRole
(String username, String rolename) Add specified role to the user.void
changeUserPassword
(String username, String password) Change user credentials.createGroup
(String groupname, String description) Create a new Group and return the corresponding name.createRole
(String rolename, String description) Create a new Role and return the corresponding name.createUser
(String username, String password, String fullName) Create a new User and return the corresponding name.String[]
getGroupRoles
(String groupname) Get roles for a group.String[]
String[]
getRoles()
String[]
getUserGroups
(String username) Get groups for a user.String[]
getUserRoles
(String username) Get roles for a user.String[]
getUsers()
void
removeGroup
(String groupname) Remove an existing group.void
removeGroupRole
(String groupname, String rolename) Remove role from a group.void
removeRole
(String rolename) Remove an existing role.void
removeUser
(String username) Remove an existing user.void
removeUserGroup
(String username, String groupname) Remove group from user.void
removeUserRole
(String username, String rolename) Remove specified role from the user.Methods inherited from class org.apache.tomcat.util.modeler.BaseModelMBean
addAttributeChangeNotificationListener, addNotificationListener, getAttribute, getAttributes, getClassName, getJmxName, getManagedResource, getMBeanInfo, getModelerType, getNotificationInfo, getObjectName, invoke, postDeregister, postRegister, preDeregister, preRegister, removeAttributeChangeNotificationListener, removeNotificationListener, sendAttributeChangeNotification, sendAttributeChangeNotification, sendNotification, sendNotification, setAttribute, setAttributes, setManagedBean, setManagedResource, toString
-
Field Details
-
registry
The configuration information registry for our managed beans. -
managed
TheManagedBean
information describing this MBean.
-
-
Constructor Details
-
DataSourceUserDatabaseMBean
public DataSourceUserDatabaseMBean()
-
-
Method Details
-
getGroups
- Returns:
- the names of all groups defined in this database.
-
getRoles
- Returns:
- the names of all roles defined in this database.
-
getUsers
- Returns:
- the names of all users defined in this database.
-
createGroup
Create a new Group and return the corresponding name.- Parameters:
groupname
- Group name of the new groupdescription
- Description of the new group- Returns:
- the new group name
-
createRole
Create a new Role and return the corresponding name.- Parameters:
rolename
- Group name of the new groupdescription
- Description of the new group- Returns:
- the new role name
-
createUser
Create a new User and return the corresponding name.- Parameters:
username
- User name of the new userpassword
- Password for the new userfullName
- Full name for the new user- Returns:
- the new user name
-
removeGroup
Remove an existing group.- Parameters:
groupname
- Group name to remove
-
removeRole
Remove an existing role.- Parameters:
rolename
- Role name to remove
-
removeUser
Remove an existing user.- Parameters:
username
- User name to remove
-
changeUserPassword
Change user credentials.- Parameters:
username
- The user namepassword
- The new credentials
-
addUserRole
Add specified role to the user.- Parameters:
username
- The user namerolename
- The role name
-
removeUserRole
Remove specified role from the user.- Parameters:
username
- The user namerolename
- The role name
-
getUserRoles
Get roles for a user.- Parameters:
username
- The user name- Returns:
- Array of role names
-
addUserGroup
Add group to user.- Parameters:
username
- The user namegroupname
- The group name
-
removeUserGroup
Remove group from user.- Parameters:
username
- The user namegroupname
- The group name
-
getUserGroups
Get groups for a user.- Parameters:
username
- The user name- Returns:
- Array of group names
-
addGroupRole
Add role to a group.- Parameters:
groupname
- The group namerolename
- The role name
-
removeGroupRole
Remove role from a group.- Parameters:
groupname
- The group namerolename
- The role name
-
getGroupRoles
Get roles for a group.- Parameters:
groupname
- The group name- Returns:
- Array of role names
-