1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.ken.bo;
17
18 import org.hibernate.annotations.GenericGenerator;
19 import org.hibernate.annotations.Parameter;
20 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21
22 import javax.persistence.*;
23
24
25
26
27
28
29 @Entity
30 @Table(name="KREN_SNDR_T")
31 public class NotificationSender extends PersistableBusinessObjectBase{
32 @Id
33 @GeneratedValue(generator="KREN_SNDR_S")
34 @GenericGenerator(name="KREN_SNDR_S",strategy="org.hibernate.id.enhanced.SequenceStyleGenerator",parameters={
35 @Parameter(name="sequence_name",value="KREN_SNDR_S"),
36 @Parameter(name="value_column",value="id")
37 })
38 @Column(name="SNDR_ID")
39 private Long id;
40 @Column(name="NTFCTN_ID", nullable=false)
41 private Long notificationId;
42 @Column(name="NM", nullable=false)
43 private String senderName;
44
45
46 @ManyToOne(fetch=FetchType.EAGER, cascade={CascadeType.PERSIST, CascadeType.REMOVE})
47 @JoinColumn(name="NTFCTN_ID", insertable=false, updatable=false)
48 private Notification notification;
49
50
51
52
53 public NotificationSender() {
54 }
55
56
57
58
59
60 public Long getId() {
61 return id;
62 }
63
64
65
66
67
68 public void setId(Long id) {
69 this.id = id;
70 }
71
72
73
74
75
76 public Long getNotificationId() {
77 return notificationId;
78 }
79
80
81
82
83
84 public void setNotificationId(Long notificationId) {
85 this.notificationId = notificationId;
86 }
87
88
89
90
91
92 public String getSenderName() {
93 return senderName;
94 }
95
96
97
98
99
100 public void setSenderName(String userId) {
101 this.senderName = userId;
102 }
103 }