Java Code Examples for org.apache.catalina.User#addGroup()

The following examples show how to use org.apache.catalina.User#addGroup() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: UserMBean.java    From Tomcat8-Source-Read with MIT License 5 votes vote down vote up
/**
 * Add a new {@link Group} to those this user belongs to.
 *
 * @param groupname Group name of the new group
 */
public void addGroup(String groupname) {

    User user = (User) this.resource;
    if (user == null) {
        return;
    }
    Group group = user.getUserDatabase().findGroup(groupname);
    if (group == null) {
        throw new IllegalArgumentException("Invalid group name '" + groupname + "'");
    }
    user.addGroup(group);
}
 
Example 2
Source File: UserMBean.java    From Tomcat7.0.67 with Apache License 2.0 5 votes vote down vote up
/**
 * Add a new {@link Group} to those this user belongs to.
 *
 * @param groupname Group name of the new group
 */
public void addGroup(String groupname) {

    User user = (User) this.resource;
    if (user == null) {
        return;
    }
    Group group = user.getUserDatabase().findGroup(groupname);
    if (group == null) {
        throw new IllegalArgumentException
            ("Invalid group name '" + groupname + "'");
    }
    user.addGroup(group);

}
 
Example 3
Source File: UserMBean.java    From tomcatsrc with Apache License 2.0 5 votes vote down vote up
/**
 * Add a new {@link Group} to those this user belongs to.
 *
 * @param groupname Group name of the new group
 */
public void addGroup(String groupname) {

    User user = (User) this.resource;
    if (user == null) {
        return;
    }
    Group group = user.getUserDatabase().findGroup(groupname);
    if (group == null) {
        throw new IllegalArgumentException
            ("Invalid group name '" + groupname + "'");
    }
    user.addGroup(group);

}