
org.bonitasoft.engine.identity.xml.Organization Maven / Gradle / Ivy
/**
* 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.ExportedUser;
import org.bonitasoft.engine.identity.Group;
import org.bonitasoft.engine.identity.Role;
import org.bonitasoft.engine.identity.UserMembership;
import org.bonitasoft.engine.identity.model.SCustomUserInfoDefinition;
/**
* @author Elias Ricken de Medeiros
*/
public class Organization {
private final List customUserInfoDefinitions;
private final List users;
private final List roles;
private final List groups;
private final List memberships;
public Organization(final List users, final List roles, final List groups, final List memberships,
List customUserInfoDefinitions) {
this.users = users;
this.roles = roles;
this.groups = groups;
this.memberships = memberships;
this.customUserInfoDefinitions = customUserInfoDefinitions;
}
public List getCustomUserInfoDefinitions() {
return customUserInfoDefinitions;
}
public List getUsers() {
return users;
}
public List getRole() {
return roles;
}
public List getGroup() {
return groups;
}
public List getMemberships() {
return memberships;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy