001: package app.data.test;
002:
003: import java.sql.Timestamp;
004: import java.util.List;
005: import javax.persistence.Entity;
006: import javax.persistence.Id;
007: import javax.persistence.OneToMany;
008: import javax.persistence.Table;
009: import javax.persistence.Version;
010:
011: /**
012: * Comment Link entity bean.
013: */
014: @Entity
015: @Table(name="c_comment_link")
016: public class CommentLink {
017:
018: @Id
019: Integer id;
020:
021: String linkUrl;
022:
023: Timestamp cretime;
024:
025: @Version
026: Timestamp updtime;
027:
028: @OneToMany
029: List<Comment> comments;
030:
031: /**
032: * Return id.
033: */
034: public Integer getId() {
035: return id;
036: }
037:
038: /**
039: * Set id.
040: */
041: public void setId(Integer id) {
042: this .id = id;
043: }
044:
045: /**
046: * Return link url.
047: */
048: public String getLinkUrl() {
049: return linkUrl;
050: }
051:
052: /**
053: * Set link url.
054: */
055: public void setLinkUrl(String linkUrl) {
056: this .linkUrl = linkUrl;
057: }
058:
059: /**
060: * Return cretime.
061: */
062: public Timestamp getCretime() {
063: return cretime;
064: }
065:
066: /**
067: * Set cretime.
068: */
069: public void setCretime(Timestamp cretime) {
070: this .cretime = cretime;
071: }
072:
073: /**
074: * Return updtime.
075: */
076: public Timestamp getUpdtime() {
077: return updtime;
078: }
079:
080: /**
081: * Set updtime.
082: */
083: public void setUpdtime(Timestamp updtime) {
084: this .updtime = updtime;
085: }
086:
087: /**
088: * Return comments.
089: */
090: public List<Comment> getComments() {
091: return comments;
092: }
093:
094: /**
095: * Set comments.
096: */
097: public void setComments(List<Comment> comments) {
098: this.comments = comments;
099: }
100:
101: }
|