/connect-dao/src/main/java/org/osforce/connect/entity/commons/VoteRecord.java

http://focus-sns.googlecode.com/ · Java · 107 lines · 78 code · 19 blank · 10 comment · 2 complexity · 230c8f9b874e38df64f577a22a20a9c0 MD5 · raw file

  1. package org.osforce.connect.entity.commons;
  2. import java.util.Date;
  3. import javax.persistence.Cacheable;
  4. import javax.persistence.Column;
  5. import javax.persistence.Entity;
  6. import javax.persistence.FetchType;
  7. import javax.persistence.JoinColumn;
  8. import javax.persistence.ManyToOne;
  9. import javax.persistence.Table;
  10. import javax.persistence.Transient;
  11. import org.osforce.connect.entity.system.User;
  12. import org.osforce.spring4me.entity.IdEntity;
  13. /**
  14. *
  15. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  16. * @since 1.1.1
  17. * @create Jun 3, 2011 - 9:36:04 AM
  18. * <a href="http://www.opensourceforce.org">????</a>
  19. */
  20. @Entity
  21. @Table(name="vote_records")
  22. @Cacheable
  23. public class VoteRecord extends IdEntity {
  24. private static final long serialVersionUID = 619838059137057058L;
  25. public static final String CODE_USEFUL = "useful";
  26. public static final String CODE_USELESS = "useless";
  27. //
  28. private String code;
  29. private Long linkedId;
  30. private String entity;
  31. private Date entered;
  32. // helper
  33. private Long userId;
  34. // refer
  35. private User user;
  36. public VoteRecord() {
  37. }
  38. public VoteRecord(String code, Long linkedId, String entity) {
  39. this.code = code;
  40. this.linkedId = linkedId;
  41. this.entity = entity;
  42. }
  43. @Column(nullable=false)
  44. public String getCode() {
  45. return code;
  46. }
  47. public void setCode(String code) {
  48. this.code = code;
  49. }
  50. @Column(nullable=false)
  51. public Long getLinkedId() {
  52. return linkedId;
  53. }
  54. public void setLinkedId(Long linkedId) {
  55. this.linkedId = linkedId;
  56. }
  57. @Column(nullable=false)
  58. public String getEntity() {
  59. return entity;
  60. }
  61. public void setEntity(String entity) {
  62. this.entity = entity;
  63. }
  64. public Date getEntered() {
  65. return entered;
  66. }
  67. public void setEntered(Date entered) {
  68. this.entered = entered;
  69. }
  70. @Transient
  71. public Long getUserId() {
  72. if(userId==null && user!=null) {
  73. userId = user.getId();
  74. }
  75. return userId;
  76. }
  77. public void setUserId(Long userId) {
  78. this.userId = userId;
  79. }
  80. @ManyToOne(fetch=FetchType.LAZY, optional=false)
  81. @JoinColumn(name="user_id")
  82. public User getUser() {
  83. return user;
  84. }
  85. public void setUser(User user) {
  86. this.user = user;
  87. }
  88. }