/** * 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 org.squale.squalecommon.datatransfertobject.component.UserDTO; import org.squale.squalecommon.enterpriselayer.businessobject.profile.UserBO; /** * @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 UserTransform implements Serializable { /** * Constructeur prive */ private UserTransform() { } /** * A lieu quand on affecte un utilisateur a un projet OU au login DTO -> BO pour un User * * @param pUserDTO UserDTO � transformer * @return UserBO */ public static UserBO dto2Bo( UserDTO pUserDTO ) { // Initialisation UserBO userBO = new UserBO(); // retour du transform // Initialisation des autres valuers de UserBO userBO.setMatricule( pUserDTO.getMatricule() ); userBO.setPassword( pUserDTO.getPassword() ); userBO.setEmail( pUserDTO.getEmail() ); userBO.setFullName( pUserDTO.getFullName() ); userBO.setId( pUserDTO.getID() ); userBO.setUnsubscribed( pUserDTO.isUnsubscribed() ); return userBO; } /** * Transformation quand login effectu� BO -> DTO pour un User * * @param pUserBO UserBO * @return UserDTO */ public static UserDTO bo2Dto( UserBO pUserBO ) { // Initialisation du retour et de la collection de sous-projet UserDTO userDTO = new UserDTO(); // Initialisation des autres valuers de UserBO userDTO.setMatricule( pUserBO.getMatricule() ); if ( pUserBO.getPassword() != null ) { userDTO.setPassword( pUserBO.getPassword() ); } if ( pUserBO.getDefaultProfile() != null ) { userDTO.setDefaultProfile( ProfileTransform.bo2Dto( pUserBO.getDefaultProfile() ) ); } userDTO.setEmail( pUserBO.getEmail() ); userDTO.setFullName( pUserBO.getFullName() ); userDTO.setID( pUserBO.getId() ); userDTO.setUnsubscribed( pUserBO.isUnsubscribed() ); return userDTO; } }