
org.bonitasoft.engine.profile.xml.ProfileMappingBinding Maven / Gradle / Ivy
/**
* Copyright (C) 2012-2013 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.profile.xml;
import java.util.List;
import java.util.Map;
import org.bonitasoft.engine.bpm.bar.xml.XMLProcessDefinition.BEntry;
import org.bonitasoft.engine.profile.ExportedProfileMappingBuilder;
import org.bonitasoft.engine.profile.impl.ExportedProfileMapping;
import org.bonitasoft.engine.xml.ElementBinding;
import org.bonitasoft.engine.xml.SXMLParseException;
/**
* @author Zhao Na
* @author Celine Souchet
*/
public class ProfileMappingBinding extends ElementBinding {
private ExportedProfileMappingBuilder profileMappingBuilder = null;
@Override
public void setAttributes(final Map attributes) throws SXMLParseException {
profileMappingBuilder = new ExportedProfileMappingBuilder();
}
@Override
public void setChildElement(final String name, final String value, final Map attributes) throws SXMLParseException {
}
@Override
@SuppressWarnings("unchecked")
public void setChildObject(final String name, final Object value) throws SXMLParseException {
if ("users".equals(name)) {
profileMappingBuilder.setUsers((List) value);
} else if ("groups".equals(name)) {
profileMappingBuilder.setGroups((List) value);
} else if ("roles".equals(name)) {
profileMappingBuilder.setRoles((List) value);
} else if ("memberships".equals(name)) {
profileMappingBuilder.setMemberships((List>) value);
}
}
@Override
public ExportedProfileMapping getObject() {
return profileMappingBuilder.done();
}
@Override
public String getElementTag() {
return "profileMapping";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy