Package io.meeds.poll.entity
Class PollEntity
- java.lang.Object
-
- io.meeds.poll.entity.PollEntity
-
- All Implemented Interfaces:
Serializable
@Entity(name="Poll") public class PollEntity extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PollEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetActivityId()DategetCreatedDate()LonggetCreatorId()DategetEndDate()LonggetId()StringgetQuestion()LonggetSpaceId()voidsetActivityId(Long activityId)voidsetCreatedDate(Date createdDate)voidsetCreatorId(Long creatorId)voidsetEndDate(Date endDate)voidsetId(Long id)voidsetQuestion(String question)voidsetSpaceId(Long spaceId)
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getQuestion
public String getQuestion()
-
setQuestion
public void setQuestion(String question)
-
getCreatedDate
public Date getCreatedDate()
-
setCreatedDate
public void setCreatedDate(Date createdDate)
-
getEndDate
public Date getEndDate()
-
setEndDate
public void setEndDate(Date endDate)
-
getCreatorId
public Long getCreatorId()
-
setCreatorId
public void setCreatorId(Long creatorId)
-
getActivityId
public Long getActivityId()
-
setActivityId
public void setActivityId(Long activityId)
-
getSpaceId
public Long getSpaceId()
-
setSpaceId
public void setSpaceId(Long spaceId)
-
-