Uses of Interface
org.chorem.pollen.business.persistence.PollAccount

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

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

Methods in org.chorem.pollen.business.converters with parameters of type PollAccount
 PollAccountDTO DataPollAccountConverter.createPollAccountDTO(PollAccount ePollAccount)
          Création d'un dto pollAccount à partir d'une entité.
 void DataPollAccountConverter.populatePollAccountEntity(PollAccountDTO pollAccountDTO, PollAccount ePollAccount)
          Création d'un compte à partir d'un dto compte.
 void DataPollAccountConverter.populatePollAccountEntity(java.lang.String votingId, java.lang.String email, java.lang.String userId, PollAccount ePollAccount)
          Création d'un compte à partir de ses attributs.
 

Method parameters in org.chorem.pollen.business.converters with type arguments of type PollAccount
 java.util.List<PollAccountDTO> DataPollAccountConverter.createPollAccountDTOs(java.util.List<PollAccount> lPollAccounts)
          Retourne une liste de dtos pollAccount à partir d'une liste d'entités.
 

Uses of PollAccount in org.chorem.pollen.business.persistence
 

Classes in org.chorem.pollen.business.persistence with type parameters of type PollAccount
 class PollAccountDAOAbstract<E extends PollAccount>
          Implantation DAO pour l'entité PollAccount.
 class PollAccountDAOImpl<E extends PollAccount>
          Implantation du DAO pour l'entité PollAccount.
 

Classes in org.chorem.pollen.business.persistence that implement PollAccount
 class PollAccountAbstract
          Implantation POJO pour l'entité PollAccount.
 class PollAccountImpl
          Implantation des operations pour l'entité PollAccount.
 

Fields in org.chorem.pollen.business.persistence declared as PollAccount
 PollAccount PollAbstract.creator
           
 PollAccount VoteAbstract.pollAccount
           
 PollAccount PersonToListAbstract.pollAccount
           
 PollAccount CommentAbstract.pollAccount
           
 

Fields in org.chorem.pollen.business.persistence with type parameters of type PollAccount
 java.util.List<PollAccount> UserAccountAbstract.pollAccount
           
 java.util.List<PollAccount> PersonListAbstract.pollAccount
           
 

Methods in org.chorem.pollen.business.persistence that return PollAccount
 PollAccount Poll.getCreator()
           
 PollAccount PollAbstract.getCreator()
           
 PollAccount Comment.getPollAccount()
           
 PollAccount Vote.getPollAccount()
           
 PollAccount VoteAbstract.getPollAccount()
           
 PollAccount PersonToListAbstract.getPollAccount()
           
 PollAccount PersonToList.getPollAccount()
           
 PollAccount CommentAbstract.getPollAccount()
           
 PollAccount UserAccount.getPollAccountByTopiaId(java.lang.String topiaId)
          Recupère l'attribut pollAccount à partir de son topiaId.
 PollAccount UserAccountAbstract.getPollAccountByTopiaId(java.lang.String topiaId)
           
 PollAccount PersonListAbstract.getPollAccountByTopiaId(java.lang.String topiaId)
           
 PollAccount PersonList.getPollAccountByTopiaId(java.lang.String topiaId)
          Recupère l'attribut pollAccount à partir de son topiaId.
 

Methods in org.chorem.pollen.business.persistence that return types with arguments of type PollAccount
 java.util.List<PollAccount> UserAccount.getPollAccount()
           
 java.util.List<PollAccount> UserAccountAbstract.getPollAccount()
           
 java.util.List<PollAccount> PersonListAbstract.getPollAccount()
           
 java.util.List<PollAccount> PersonList.getPollAccount()
           
 

Methods in org.chorem.pollen.business.persistence with parameters of type PollAccount
 void UserAccount.addPollAccount(PollAccount pollAccount)
           
 void UserAccountAbstract.addPollAccount(PollAccount pollAccount)
           
 void PersonListAbstract.addPollAccount(PollAccount pollAccount)
           
 void PersonList.addPollAccount(PollAccount pollAccount)
           
 java.util.List<E> PollDAOAbstract.findAllByCreator(PollAccount v)
          Retourne les éléments ayant comme valeur pour l'attribut creator le paramètre
 java.util.List<E> CommentDAOAbstract.findAllByPollAccount(PollAccount v)
          Retourne les éléments ayant comme valeur pour l'attribut pollAccount le paramètre
 java.util.List<E> VoteDAOAbstract.findAllByPollAccount(PollAccount v)
          Retourne les éléments ayant comme valeur pour l'attribut pollAccount le paramètre
 java.util.List<E> UserAccountDAOAbstract.findAllContainsPollAccount(PollAccount... v)
          Retourne les éléments trouvé dont l'attribut pollAccount contient le paramètre
 java.util.List<E> VotingListDAOAbstract.findAllContainsPollAccount(PollAccount... v)
          Retourne les éléments trouvé dont l'attribut pollAccount contient le paramètre
 java.util.List<E> PersonToListDAOAbstract.findAllContainsPollAccount(PollAccount... v)
          Retourne les éléments trouvé dont l'attribut pollAccount contient le paramètre
 java.util.List<E> PersonListDAOAbstract.findAllContainsPollAccount(PollAccount... v)
          Retourne les éléments trouvé dont l'attribut pollAccount contient le paramètre
 E PollDAOAbstract.findByCreator(PollAccount v)
          Retourne le premier élément trouvé ayant comme valeur pour l'attribut creator le paramètre
 E CommentDAOAbstract.findByPollAccount(PollAccount v)
          Retourne le premier élément trouvé ayant comme valeur pour l'attribut pollAccount le paramètre
 E VoteDAOAbstract.findByPollAccount(PollAccount v)
          Retourne le premier élément trouvé ayant comme valeur pour l'attribut pollAccount le paramètre
 E UserAccountDAOAbstract.findContainsPollAccount(PollAccount... v)
          Retourne le premier élément trouvé dont l'attribut pollAccount contient le paramètre
 E VotingListDAOAbstract.findContainsPollAccount(PollAccount... v)
          Retourne le premier élément trouvé dont l'attribut pollAccount contient le paramètre
 E PersonToListDAOAbstract.findContainsPollAccount(PollAccount... v)
          Retourne le premier élément trouvé dont l'attribut pollAccount contient le paramètre
 E PersonListDAOAbstract.findContainsPollAccount(PollAccount... v)
          Retourne le premier élément trouvé dont l'attribut pollAccount contient le paramètre
 PersonToList VotingList.getPollAccountPersonToList(PollAccount value)
           
 PersonToList VotingListAbstract.getPollAccountPersonToList(PollAccount value)
           
 void UserAccount.removePollAccount(PollAccount pollAccount)
           
 void UserAccountAbstract.removePollAccount(PollAccount value)
           
 void PersonListAbstract.removePollAccount(PollAccount value)
           
 void PersonList.removePollAccount(PollAccount pollAccount)
           
 void Poll.setCreator(PollAccount creator)
           
 void PollAbstract.setCreator(PollAccount value)
           
 void Comment.setPollAccount(PollAccount pollAccount)
           
 void Vote.setPollAccount(PollAccount pollAccount)
           
 void VoteAbstract.setPollAccount(PollAccount value)
           
 void PersonToListAbstract.setPollAccount(PollAccount value)
           
 void PersonToList.setPollAccount(PollAccount value)
           
 void CommentAbstract.setPollAccount(PollAccount value)
           
 

Method parameters in org.chorem.pollen.business.persistence with type arguments of type PollAccount
 void UserAccount.addAllPollAccount(java.util.List<PollAccount> pollAccount)
           
 void UserAccountAbstract.addAllPollAccount(java.util.List<PollAccount> values)
           
 void PersonListAbstract.addAllPollAccount(java.util.List<PollAccount> values)
           
 void PersonList.addAllPollAccount(java.util.List<PollAccount> pollAccount)
           
 void UserAccount.setPollAccount(java.util.List<PollAccount> pollAccount)
           
 void UserAccountAbstract.setPollAccount(java.util.List<PollAccount> values)
           
 void PersonListAbstract.setPollAccount(java.util.List<PollAccount> values)
           
 void PersonList.setPollAccount(java.util.List<PollAccount> pollAccount)
           
 

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

Methods in org.chorem.pollen.business.services that return PollAccount
 PollAccount ServicePollAccountImpl.createPollAccount(java.lang.String votingId, java.lang.String email, java.lang.String userId)
           
 PollAccount ServicePollAccount.createPollAccount(java.lang.String votingId, java.lang.String email, java.lang.String userId)
          Creation d'un compte utilisateur.
 

Methods in org.chorem.pollen.business.services that return types with arguments of type PollAccount
 java.util.List<PollAccount> ServicePollAccountImpl.createPollAccounts(java.util.List<PollAccountDTO> pollAccounts, org.nuiton.topia.TopiaContext trans)
           
 java.util.List<PollAccount> ServicePollAccount.createPollAccounts(java.util.List<PollAccountDTO> pollAccounts, org.nuiton.topia.TopiaContext transaction)
          Creation des comptes utilisateur.
 



Copyright © 2009-2010 CodeLutin. All Rights Reserved.