All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bonitasoft.engine.identity.xml.OrganizationCreator Maven / Gradle / Ivy

There is a newer version: 10.2.0
Show newest version
/**
 * Copyright (C) 2015 BonitaSoft S.A.
 * BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
 * This library is free software; you can redistribute it and/or modify it under the terms
 * of the GNU Lesser General Public License as published by the Free Software Foundation
 * version 2.1 of the License.
 * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License along with this
 * program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
 * Floor, Boston, MA 02110-1301, USA.
 **/
package org.bonitasoft.engine.identity.xml;

import java.util.List;

import org.bonitasoft.engine.identity.CustomUserInfoDefinitionCreator;
import org.bonitasoft.engine.identity.ExportedUser;
import org.bonitasoft.engine.identity.GroupCreator;
import org.bonitasoft.engine.identity.RoleCreator;
import org.bonitasoft.engine.identity.UserMembership;

/**
 * @author Baptiste Mesta
 * @author Frederic Bouquet
 * @author Matthieu Chaffotte
 */
public class OrganizationCreator {

    private final List customUserInfoDefinitionCreators;
    
    private final List users;

    private final List roles;

    private final List groups;

    private final List memberships;

    public OrganizationCreator(final List users, final List roles, final List groups, final List memberships,
            List customUserInfoDefinitionCreators) {
        this.users = users;
        this.roles = roles;
        this.groups = groups;
        this.memberships = memberships;
        this.customUserInfoDefinitionCreators = customUserInfoDefinitionCreators;
    }
    
    public List getCustomUserInfoDefinitionCreators() {
        return customUserInfoDefinitionCreators;
    }

    public List getUsers() {
        return users;
    }

    public List getRoleCreators() {
        return roles;
    }

    public List getGroupCreators() {
        return groups;
    }

    public List getMemberships() {
        return memberships;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy