com.liferay.portlet.polls.model
Interface PollsVoteModel

All Superinterfaces:
BaseModel, java.lang.Cloneable, java.lang.Comparable, java.io.Serializable
All Known Subinterfaces:
PollsVote

public interface PollsVoteModel
extends BaseModel

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface is a model that represents the PollsVote table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portlet.polls.service.model.PollsVote, com.liferay.portlet.polls.service.model.impl.PollsVoteImpl, com.liferay.portlet.polls.service.model.impl.PollsVoteModelImpl

Method Summary
 long getChoiceId()
           
 long getPrimaryKey()
           
 long getQuestionId()
           
 long getUserId()
           
 java.util.Date getVoteDate()
           
 long getVoteId()
           
 void setChoiceId(long choiceId)
           
 void setPrimaryKey(long pk)
           
 void setQuestionId(long questionId)
           
 void setUserId(long userId)
           
 void setVoteDate(java.util.Date voteDate)
           
 void setVoteId(long voteId)
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, getPrimaryKeyObj, isNew, setNew
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getPrimaryKey

public long getPrimaryKey()

setPrimaryKey

public void setPrimaryKey(long pk)

getVoteId

public long getVoteId()

setVoteId

public void setVoteId(long voteId)

getUserId

public long getUserId()

setUserId

public void setUserId(long userId)

getQuestionId

public long getQuestionId()

setQuestionId

public void setQuestionId(long questionId)

getChoiceId

public long getChoiceId()

setChoiceId

public void setChoiceId(long choiceId)

getVoteDate

public java.util.Date getVoteDate()

setVoteDate

public void setVoteDate(java.util.Date voteDate)