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 ServiceUser.findUserById(String userId)
          Récupération d'un utilisateur à partir de son identifiant
 UserDTO ServiceUserImpl.findUserById(String userId)
           
 UserDTO ServiceAuthImpl.getUser(String login, String password)
           
 UserDTO ServiceAuth.getUser(String login, String password)
          Identification d'un utilisateur.
 

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

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



Copyright © 2009-2010 CodeLutin. All Rights Reserved.