/** * */ package org.msh.tb.entities; import org.hibernate.validator.NotNull; import javax.persistence.*; import java.util.Date; /** * Store information about a follow up of an issue. A follow up contains * an answer given by an user to a given issue. * * @author Ricardo Memoria * */ @Entity @Table(name="issuefollowup") public class IssueFollowup { @Id @GeneratedValue(strategy=GenerationType.AUTO) private Integer id; @NotNull @ManyToOne @JoinColumn(name="issue_id") private Issue issue; @Lob @NotNull private String text; @ManyToOne(fetch=FetchType.LAZY) @JoinColumn(name="user_id") @NotNull private User user; @Temporal(TemporalType.TIMESTAMP) @NotNull private Date followupDate; @ManyToOne(fetch=FetchType.LAZY) @JoinColumn(name="unit_id") @NotNull private Tbunit unit; /** * @return the id */ public Integer getId() { return id; } /** * @param id the id to set */ public void setId(Integer id) { this.id = id; } /** * @return the text */ public String getText() { return text; } /** * @param text the text to set */ public void setText(String text) { this.text = text; } /** * @return the user */ public User getUser() { return user; } /** * @param user the user to set */ public void setUser(User user) { this.user = user; } /** * @return the followupDate */ public Date getFollowupDate() { return followupDate; } /** * @param followupDate the followupDate to set */ public void setFollowupDate(Date followupDate) { this.followupDate = followupDate; } /** * @return the issue */ public Issue getIssue() { return issue; } /** * @param issue the issue to set */ public void setIssue(Issue issue) { this.issue = issue; } /** * @return the unit */ public Tbunit getUnit() { return unit; } /** * @param unit the unit to set */ public void setUnit(Tbunit unit) { this.unit = unit; } }