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

Packages that use PollDTO
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 PollDTO in org.chorem.pollen.business.converters
 

Methods in org.chorem.pollen.business.converters that return PollDTO
 PollDTO DataPollConverter.createPollDTO(Poll ePoll)
          Création d'un dto sondage à partir d'une entité.
static PollDTO DataVoteCountingConverter.createPollDTO(PollDTO pollDTO)
          Création d'un DTO sondage à partir d'un DTO sondage d'export.
 

Methods in org.chorem.pollen.business.converters that return types with arguments of type PollDTO
 java.util.List<PollDTO> DataPollConverter.createPollDTOs(java.util.List<Poll> lPolls)
          Retourne une liste de dtos sondage à partir d'une liste d'entités.
 

Methods in org.chorem.pollen.business.converters with parameters of type PollDTO
 void DataPollConverter.persistChoices(PollDTO pollDTO, Poll ePoll)
          Persistance des choix d'une entité sondage à partir d'un DTO.
 void DataPollConverter.persistPreventRules(PollDTO pollDTO, Poll ePoll)
          Persistance des règles de notification d'une entité sondage à partir d'un DTO.
 void DataPollConverter.populatePollEntity(PollDTO pollDTO, Poll ePoll)
          Création d'un sondage à partir d'un dto sondage.
 

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

Methods in org.chorem.pollen.business.services that return PollDTO
 PollDTO ServicePoll.findPollById(java.lang.String pollId)
          Récupération d'un sondage à partir de son identifiant ToPIA
 PollDTO ServicePollImpl.findPollById(java.lang.String pollId)
           
 PollDTO ServicePoll.findPollByPollId(java.lang.String pollId)
          Récupération d'un sondage à partir de son identifiant.
 PollDTO ServicePollImpl.findPollByPollId(java.lang.String pollId)
           
 

Methods in org.chorem.pollen.business.services that return types with arguments of type PollDTO
 java.util.List<PollDTO> ServicePoll.findInvitedPolls(java.lang.String userId)
          Récupération des sondages auxquels un utilisateur est invité.
 java.util.List<PollDTO> ServicePollImpl.findInvitedPolls(java.lang.String userId)
           
 java.util.List<PollDTO> ServicePoll.findParticipatedPolls(java.lang.String userId)
          Récupération des sondages auxquels un utilisateur a participé.
 java.util.List<PollDTO> ServicePollImpl.findParticipatedPolls(java.lang.String userId)
           
 java.util.List<PollDTO> ServicePoll.findPollsByName(java.lang.String pollName)
          Récupération d'un sondage par son nom
 java.util.List<PollDTO> ServicePollImpl.findPollsByName(java.lang.String pollName)
           
 java.util.List<PollDTO> ServicePoll.findPollsByUser(java.lang.String userId)
          Récupération des sondages d'un utilisateur
 java.util.List<PollDTO> ServicePollImpl.findPollsByUser(java.lang.String userId)
           
 java.util.List<PollDTO> ServicePoll.findRunningPolls(boolean withEndDate)
          Récupération des sondages en cours.
 java.util.List<PollDTO> ServicePollImpl.findRunningPolls(boolean withEndDate)
           
 java.util.List<PollDTO> ServicePoll.selectPolls(java.util.Map<java.lang.String,java.lang.Object> properties)
          Récupération des sondages
 java.util.List<PollDTO> ServicePollImpl.selectPolls(java.util.Map<java.lang.String,java.lang.Object> properties)
           
 

Methods in org.chorem.pollen.business.services with parameters of type PollDTO
 java.lang.String ServicePoll.createPoll(PollDTO poll)
          Création d'un sondage
 java.lang.String ServicePollImpl.createPoll(PollDTO pollDTO)
           
 boolean ServicePoll.updatePoll(PollDTO poll)
          Mise à jour du sondage
 boolean ServicePollImpl.updatePoll(PollDTO pollDTO)
           
 



Copyright © 2009-2010 CodeLutin. All Rights Reserved.