/** * Copyright (C) 2008-2010, Squale Project - http://www.squale.org * * This file is part of Squale. * * Squale 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, either version 3 of the * License, or any later version. * * Squale 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 General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Squale. If not, see <http://www.gnu.org/licenses/>. */ /* * Cr�� le 12 juil. 05 * * Pour changer le mod�le de ce fichier g�n�r�, allez � : * Fen�tre>Pr�f�rences>Java>G�n�ration de code>Code et commentaires */ package org.squale.squalecommon.datatransfertobject.transform.component; import java.io.Serializable; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import org.squale.squalecommon.datatransfertobject.component.ProfileDTO; import org.squale.squalecommon.enterpriselayer.businessobject.profile.AtomicRightsBO; import org.squale.squalecommon.enterpriselayer.businessobject.profile.ProfileBO; /** * @author M400841 Pour changer le mod�le de ce commentaire de type g�n�r�, allez � : * Fen�tre>Pr�f�rences>Java>G�n�ration de code>Code et commentaires */ public class ProfileTransform implements Serializable { /** * Constructeur prive */ private ProfileTransform() { } /** * DTO -> BO pour un Profile * * @param pProfileDTO ProfileDTO � transformer * @return ProfileBO * @deprecated non utilise car on ne renverra pas de profile */ public static ProfileBO dto2Bo( ProfileDTO pProfileDTO ) { // Initialisation ProfileBO profileBO = new ProfileBO(); Map rightsBO = new HashMap(); // droits profileBO.setName( pProfileDTO.getName() ); profileBO.setRights( rightsBO ); return profileBO; } /** * Utilis� pour r�cup�rer un utilisateur BO -> DTO pour un Profile * * @param pProfileBO ProfileBO * @return ProfileDTO */ public static ProfileDTO bo2Dto( ProfileBO pProfileBO ) { // Initialisation ProfileDTO profileDTO = new ProfileDTO(); Map rightsDTO = new HashMap(); // droits Iterator rightsIterator = pProfileBO.getRights().keySet().iterator(); AtomicRightsBO currentKey = null; while ( rightsIterator.hasNext() ) { currentKey = (AtomicRightsBO) rightsIterator.next(); // Ajout dans la map DTO du nom du droit atomique et de la valeur // correspondante a la cl� rightsDTO.put( currentKey.getName(), pProfileBO.getRights().get( currentKey ) ); } profileDTO.setName( pProfileBO.getName() ); profileDTO.setRights( rightsDTO ); return profileDTO; } }