Uses of Class
org.chorem.pollen.business.dto.UserDTO

Packages that use UserDTO
org.chorem.pollen.business.converters Gestion de la conversion des DTO en entités et des entités en DTO. 
org.chorem.pollen.business.services Services proposés par le module Business. 
 

Uses of UserDTO in org.chorem.pollen.business.converters
 

Methods in org.chorem.pollen.business.converters that return UserDTO
 UserDTO DataUserConverter.createUserDTO(UserAccount eUser)
          Création d'un DTO utilisateur à partir d'une entité utilisateur.
 

Methods in org.chorem.pollen.business.converters that return types with arguments of type UserDTO
 List<UserDTO> DataUserConverter.createUserDTOs(List<UserAccount> lUsers)
          retourne une liste de dtos des utilisateurs à partir d'une liste d'entité.
 

Methods in org.chorem.pollen.business.converters with parameters of type UserDTO
 void DataUserConverter.populateUserEntity(UserDTO userDTO, UserAccount eUser)
          Mise à jour d'un utilisateur à partir d'un dto utilisateur.
 void DataUserConverter.populateUserEntity(UserDTO userDTO, UserAccount eUser, String password)
          Création d'une entité utilisateur à partir d'un dto utilisateur.
 

Uses of UserDTO in org.chorem.pollen.business.services
 

Methods in org.chorem.pollen.business.services that return UserDTO
 UserDTO ServiceUserImpl.findUserById(String userId)
           
 UserDTO ServiceUser.findUserById(String userId)
          Récupération d'un utilisateur à partir de son identifiant
 UserDTO ServiceAuth.getUser(String login, String password)
          Identification d'un utilisateur.
 UserDTO ServiceAuthImpl.getUser(String login, String password)
           
 

Methods in org.chorem.pollen.business.services that return types with arguments of type UserDTO
 List<UserDTO> ServiceUserImpl.selectUsers(Map<String,Object> properties)
           
 List<UserDTO> ServiceUser.selectUsers(Map<String,Object> properties)
          Récupération des utilisateurs
 

Methods in org.chorem.pollen.business.services with parameters of type UserDTO
 String ServiceUserImpl.createUser(UserDTO user, String password)
           
 String ServiceUser.createUser(UserDTO user, String password)
          Création des utilisateurs
 boolean ServiceUserImpl.deleteUser(UserDTO user)
           
 boolean ServiceUser.deleteUser(UserDTO user)
          Suppression d'un utilisateur
 String ServiceResultsImpl.importPoll(String filePath, UserDTO user)
           
 String ServiceResults.importPoll(String filePath, UserDTO user)
          Import d'un fichier XML.
 boolean ServiceUserImpl.updatePasswordUser(UserDTO user, String newPassword)
           
 boolean ServiceUser.updatePasswordUser(UserDTO user, String newPassword)
          Mise à jour du mot de passe d'un utilisateur
 boolean ServiceUserImpl.updateUser(UserDTO user)
           
 boolean ServiceUser.updateUser(UserDTO user)
          Modification d'un utilistaeur
 



Copyright © 2009-2010 CodeLutin. All Rights Reserved.