org.chorem.pollen.business.persistence
Interface PollAccount

All Superinterfaces:
Serializable, org.nuiton.topia.persistence.TopiaEntity
All Known Implementing Classes:
PollAccountAbstract, PollAccountImpl

public interface PollAccount
extends org.nuiton.topia.persistence.TopiaEntity


Field Summary
static String PROPERTY_ACCOUNT_ID
           
static String PROPERTY_COMMENT
           
static String PROPERTY_EMAIL
           
static String PROPERTY_PERSON_LIST
           
static String PROPERTY_POLLS_CREATED
           
static String PROPERTY_USER_ACCOUNT
           
static String PROPERTY_VOTE
           
static String PROPERTY_VOTING_ID
           
static String PROPERTY_VOTING_LIST_PERSON_TO_LIST
           
 
Fields inherited from interface org.nuiton.topia.persistence.TopiaEntity
AGGREGATE, COMPOSITE, TOPIA_CREATE_DATE, TOPIA_ID, TOPIA_VERSION
 
Method Summary
 void addAllComment(List<Comment> comment)
           
 void addAllPollsCreated(List<Poll> pollsCreated)
           
 void addAllVote(List<Vote> vote)
           
 void addAllVotingListPersonToList(List<PersonToList> votingListPersonToList)
           
 void addComment(Comment comment)
           
 void addPollsCreated(Poll pollsCreated)
           
 void addVote(Vote vote)
           
 void addVotingListPersonToList(PersonToList votingListPersonToList)
           
 void clearComment()
           
 void clearPollsCreated()
           
 void clearVote()
           
 void clearVotingListPersonToList()
           
 String getAccountId()
           
 List<Comment> getComment()
           
 Comment getCommentByTopiaId(String topiaId)
           
 String getEmail()
           
 PersonList getPersonList()
           
 List<Poll> getPollsCreated()
           
 Poll getPollsCreatedByTopiaId(String topiaId)
           
 UserAccount getUserAccount()
           
 List<Vote> getVote()
           
 Vote getVoteByTopiaId(String topiaId)
           
 String getVotingId()
           
 List<PersonToList> getVotingListPersonToList()
           
 PersonToList getVotingListPersonToList(VotingList votingList)
           
 PersonToList getVotingListPersonToListByTopiaId(String topiaId)
           
 boolean isCommentEmpty()
           
 boolean isPollsCreatedEmpty()
           
 boolean isVoteEmpty()
           
 boolean isVotingListPersonToListEmpty()
           
 void removeComment(Comment comment)
           
 void removePollsCreated(Poll pollsCreated)
           
 void removeVote(Vote vote)
           
 void removeVotingListPersonToList(PersonToList votingListPersonToList)
           
 void setAccountId(String accountId)
           
 void setComment(List<Comment> comment)
           
 void setEmail(String email)
           
 void setPersonList(PersonList personList)
           
 void setPollsCreated(List<Poll> pollsCreated)
           
 void setUserAccount(UserAccount userAccount)
           
 void setVote(List<Vote> vote)
           
 void setVotingId(String votingId)
           
 void setVotingListPersonToList(List<PersonToList> votingListPersonToList)
           
 int sizeComment()
           
 int sizePollsCreated()
           
 int sizeVote()
           
 int sizeVotingListPersonToList()
           
 
Methods inherited from interface org.nuiton.topia.persistence.TopiaEntity
accept, addPropertyChangeListener, addPropertyChangeListener, addPropertyListener, addPropertyListener, addVetoableChangeListener, addVetoableChangeListener, addVetoableListener, addVetoableListener, getAggregate, getComposite, getTopiaCreateDate, getTopiaId, getTopiaVersion, removePropertyChangeListener, removePropertyChangeListener, removePropertyListener, removePropertyListener, removeVetoableChangeListener, removeVetoableChangeListener, removeVetoableListener, removeVetoableListener, setTopiaCreateDate, setTopiaId, setTopiaVersion
 

Field Detail

PROPERTY_ACCOUNT_ID

static final String PROPERTY_ACCOUNT_ID
See Also:
Constant Field Values

PROPERTY_VOTING_ID

static final String PROPERTY_VOTING_ID
See Also:
Constant Field Values

PROPERTY_EMAIL

static final String PROPERTY_EMAIL
See Also:
Constant Field Values

PROPERTY_VOTING_LIST_PERSON_TO_LIST

static final String PROPERTY_VOTING_LIST_PERSON_TO_LIST
See Also:
Constant Field Values

PROPERTY_POLLS_CREATED

static final String PROPERTY_POLLS_CREATED
See Also:
Constant Field Values

PROPERTY_COMMENT

static final String PROPERTY_COMMENT
See Also:
Constant Field Values

PROPERTY_VOTE

static final String PROPERTY_VOTE
See Also:
Constant Field Values

PROPERTY_PERSON_LIST

static final String PROPERTY_PERSON_LIST
See Also:
Constant Field Values

PROPERTY_USER_ACCOUNT

static final String PROPERTY_USER_ACCOUNT
See Also:
Constant Field Values
Method Detail

setAccountId

void setAccountId(String accountId)

getAccountId

String getAccountId()

setVotingId

void setVotingId(String votingId)

getVotingId

String getVotingId()

setEmail

void setEmail(String email)

getEmail

String getEmail()

addVotingListPersonToList

void addVotingListPersonToList(PersonToList votingListPersonToList)

addAllVotingListPersonToList

void addAllVotingListPersonToList(List<PersonToList> votingListPersonToList)

setVotingListPersonToList

void setVotingListPersonToList(List<PersonToList> votingListPersonToList)

removeVotingListPersonToList

void removeVotingListPersonToList(PersonToList votingListPersonToList)

clearVotingListPersonToList

void clearVotingListPersonToList()

getVotingListPersonToList

List<PersonToList> getVotingListPersonToList()

getVotingListPersonToListByTopiaId

PersonToList getVotingListPersonToListByTopiaId(String topiaId)

getVotingListPersonToList

PersonToList getVotingListPersonToList(VotingList votingList)

sizeVotingListPersonToList

int sizeVotingListPersonToList()

isVotingListPersonToListEmpty

boolean isVotingListPersonToListEmpty()

addPollsCreated

void addPollsCreated(Poll pollsCreated)

addAllPollsCreated

void addAllPollsCreated(List<Poll> pollsCreated)

setPollsCreated

void setPollsCreated(List<Poll> pollsCreated)

removePollsCreated

void removePollsCreated(Poll pollsCreated)

clearPollsCreated

void clearPollsCreated()

getPollsCreated

List<Poll> getPollsCreated()

getPollsCreatedByTopiaId

Poll getPollsCreatedByTopiaId(String topiaId)

sizePollsCreated

int sizePollsCreated()

isPollsCreatedEmpty

boolean isPollsCreatedEmpty()

addComment

void addComment(Comment comment)

addAllComment

void addAllComment(List<Comment> comment)

setComment

void setComment(List<Comment> comment)

removeComment

void removeComment(Comment comment)

clearComment

void clearComment()

getComment

List<Comment> getComment()

getCommentByTopiaId

Comment getCommentByTopiaId(String topiaId)

sizeComment

int sizeComment()

isCommentEmpty

boolean isCommentEmpty()

addVote

void addVote(Vote vote)

addAllVote

void addAllVote(List<Vote> vote)

setVote

void setVote(List<Vote> vote)

removeVote

void removeVote(Vote vote)

clearVote

void clearVote()

getVote

List<Vote> getVote()

getVoteByTopiaId

Vote getVoteByTopiaId(String topiaId)

sizeVote

int sizeVote()

isVoteEmpty

boolean isVoteEmpty()

setPersonList

void setPersonList(PersonList personList)

getPersonList

PersonList getPersonList()

setUserAccount

void setUserAccount(UserAccount userAccount)

getUserAccount

UserAccount getUserAccount()


Copyright © 2009-2012 CodeLutin. All Rights Reserved.