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.kuali.rice.ken.api.notification.NotificationSender;
19 import org.kuali.rice.ken.api.notification.NotificationSenderContract;
20 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21 import org.kuali.rice.krad.data.KradDataServiceLocator;
22 import org.kuali.rice.krad.data.jpa.PortableSequenceGenerator;
23
24 import javax.persistence.CascadeType;
25 import javax.persistence.Column;
26 import javax.persistence.Entity;
27 import javax.persistence.FetchType;
28 import javax.persistence.GeneratedValue;
29 import javax.persistence.Id;
30 import javax.persistence.JoinColumn;
31 import javax.persistence.ManyToOne;
32 import javax.persistence.Table;
33
34
35
36
37
38
39 @Entity
40 @Table(name="KREN_SNDR_T")
41 public class NotificationSenderBo extends PersistableBusinessObjectBase implements NotificationSenderContract {
42 @Id
43 @GeneratedValue(generator="KREN_SNDR_S")
44 @PortableSequenceGenerator(name="KREN_SNDR_S")
45 @Column(name="SNDR_ID")
46 private Long id;
47 @Column(name="NM", nullable=false)
48 private String senderName;
49
50
51 @ManyToOne(fetch=FetchType.EAGER, cascade={CascadeType.PERSIST, CascadeType.REMOVE})
52 @JoinColumn(name="NTFCTN_ID", nullable = false)
53 private NotificationBo notification;
54
55
56
57
58 public NotificationSenderBo() {
59 }
60
61
62
63
64
65 public Long getId() {
66 return id;
67 }
68
69
70
71
72
73 public void setId(Long id) {
74 this.id = id;
75 }
76
77
78
79
80
81 public Long getNotificationId() {
82 return (notification == null) ? null : notification.getId();
83 }
84
85
86
87
88
89 public String getSenderName() {
90 return senderName;
91 }
92
93
94
95
96
97 public void setSenderName(String userId) {
98 this.senderName = userId;
99 }
100
101 public NotificationBo getNotification() {
102 return notification;
103 }
104
105 public void setNotification(NotificationBo notification) {
106 this.notification = notification;
107 }
108
109
110
111
112
113
114 public static NotificationSender to(NotificationSenderBo bo) {
115 if (bo == null) {
116 return null;
117 }
118
119 return NotificationSender.Builder.create(bo).build();
120 }
121
122
123
124
125
126
127 public static NotificationSenderBo from(NotificationSender im) {
128 if (im == null) {
129 return null;
130 }
131
132 NotificationSenderBo bo = new NotificationSenderBo();
133 bo.setId(im.getId());
134 bo.setVersionNumber(im.getVersionNumber());
135 bo.setObjectId(im.getObjectId());
136 bo.setSenderName(im.getSenderName());
137 if (im.getNotificationId() != null) {
138 NotificationBo notification =
139 KradDataServiceLocator.getDataObjectService().find(NotificationBo.class, im.getNotificationId());
140 bo.setNotification(notification);
141 }
142 return bo;
143 }
144 }