View Javadoc
1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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   * This class represents the data structure that will house information about the non-system 
36   * sender that a notification message is sent on behalf of.
37   * @author Kuali Rice Team (rice.collab@kuali.org)
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      // Added for JPA uni-directional one-to-many (not yet supported by JPA)
51      @ManyToOne(fetch=FetchType.EAGER, cascade={CascadeType.PERSIST, CascadeType.REMOVE})
52      @JoinColumn(name="NTFCTN_ID", nullable = false)
53      private NotificationBo notification;
54  
55      /**
56       * Constructs a NotificationSender.java instance.
57       */
58      public NotificationSenderBo() {
59      }
60  
61      /**
62       * Gets the id attribute. 
63       * @return Returns the id.
64       */
65      public Long getId() {
66          return id;
67      }
68  
69      /**
70       * Sets the id attribute value.
71       * @param id The id to set.
72       */
73      public void setId(Long id) {
74          this.id = id;
75      }
76  
77      /**
78       * Gets the notificationId attribute.
79       * @return Returns the notificationId.
80       */
81      public Long getNotificationId() {
82          return (notification == null) ? null : notification.getId();
83      }
84  
85      /**
86       * Gets the senderName attribute. 
87       * @return Returns the senderName.
88       */
89      public String getSenderName() {
90          return senderName;
91      }
92  
93      /**
94       * Sets the senderName attribute value.
95       * @param userId The senderName to set.
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      * Converts a mutable bo to its immutable counterpart
111      * @param bo the mutable business object
112      * @return the immutable object
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      * Converts a immutable object to its mutable counterpart
124      * @param im immutable object
125      * @return the mutable bo
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 }