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
 List<PollDTO> DataPollConverter.createPollDTOs(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 ServicePollImpl.findPollById(String pollId)
           
 PollDTO ServicePoll.findPollById(String pollId)
          Récupération d'un sondage à partir de son identifiant ToPIA
 PollDTO ServicePollImpl.findPollByPollId(String pollId)
           
 PollDTO ServicePoll.findPollByPollId(String pollId)
          Récupération d'un sondage à partir de son identifiant.
 

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

Methods in org.chorem.pollen.business.services with parameters of type PollDTO
 String ServicePollImpl.createPoll(PollDTO pollDTO)
           
 String ServicePoll.createPoll(PollDTO poll)
          Création d'un sondage
 List<VoteDTO> ServiceVote.getVotesByPoll(PollDTO poll, int startIndex, int endIndex)
          Retrieve existings votes from the poll.
 List<VoteDTO> ServiceVoteImpl.getVotesByPoll(PollDTO poll, int startIndex, int endIndex)
           
 boolean ServiceVote.hasAlreadyVoted(String votingId, PollDTO poll)
          Test if the votingId has already voted for the poll.
 boolean ServiceVoteImpl.hasAlreadyVoted(String votingId, PollDTO poll)
           
 boolean ServicePollImpl.updatePoll(PollDTO pollDTO)
           
 boolean ServicePoll.updatePoll(PollDTO poll)
          Mise à jour du sondage
 



Copyright © 2009-2010 CodeLutin. All Rights Reserved.