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

Packages that use PollAccount
org.chorem.pollen.business   
org.chorem.pollen.business.converters   
org.chorem.pollen.business.persistence   
 

Uses of PollAccount in org.chorem.pollen.business
 

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

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

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 CommentAbstract.pollAccount
           
 PollAccount PersonToListAbstract.pollAccount
           
 PollAccount VoteAbstract.pollAccount
           
 

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

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

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

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



Copyright © 2009 CodeLutin. All Rights Reserved.