View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import org.kuali.ole.deliver.api.OlePatronNotesContract;
4   import org.kuali.ole.deliver.api.OlePatronNotesDefinition;
5   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
6   
7   import java.sql.Timestamp;
8   import java.util.LinkedHashMap;
9   
10  /**
11   * OlePatronNotes provides OlePatronNotes information through getter and setter.
12   */
13  public class OlePatronNotes extends PersistableBusinessObjectBase implements OlePatronNotesContract {
14  
15      private String patronNoteId;
16      private String olePatronId;
17      private String patronNoteTypeId;
18      private String patronNoteText;
19      private String operatorId;
20      private Timestamp noteCreatedOrUpdatedDate;
21      private boolean active;
22      private OlePatronNoteType olePatronNoteType;
23      private OlePatronDocument olePatron;
24      private boolean selected;
25  
26      /**
27       * Gets the value of patronNoteId property
28       *
29       * @return patronNoteId
30       */
31      public String getPatronNoteId() {
32          return patronNoteId;
33      }
34  
35      /**
36       * Sets the value for patronNoteId property
37       *
38       * @param patronNoteId
39       */
40      public void setPatronNoteId(String patronNoteId) {
41          this.patronNoteId = patronNoteId;
42      }
43  
44      /**
45       * Gets the value of olePatronId property
46       *
47       * @return olePatronId
48       */
49      public String getOlePatronId() {
50          return olePatronId;
51      }
52  
53      /**
54       * Sets the value for olePatronId property
55       *
56       * @param olePatronId
57       */
58      public void setOlePatronId(String olePatronId) {
59          this.olePatronId = olePatronId;
60      }
61  
62      /**
63       * Gets the value of patronNoteTypeId property
64       *
65       * @return patronNoteTypeId
66       */
67      public String getPatronNoteTypeId() {
68          return patronNoteTypeId;
69      }
70  
71      /**
72       * Sets the value for patronNoteTypeId property
73       *
74       * @param patronNoteTypeId
75       */
76      public void setPatronNoteTypeId(String patronNoteTypeId) {
77          this.patronNoteTypeId = patronNoteTypeId;
78      }
79  
80      /**
81       * Gets the value of patronNoteText property
82       *
83       * @return patronNoteText
84       */
85      public String getPatronNoteText() {
86          return patronNoteText;
87      }
88  
89      /**
90       * Sets the value for patronNoteText property
91       *
92       * @param patronNoteText
93       */
94      public void setPatronNoteText(String patronNoteText) {
95          this.patronNoteText = patronNoteText;
96      }
97  
98      /**
99       * Gets the boolean value of active property
100      *
101      * @return active
102      */
103     public boolean isActive() {
104         return active;
105     }
106 
107     /**
108      * Sets the boolean value for active property
109      *
110      * @param active
111      */
112     public void setActive(boolean active) {
113         this.active = active;
114     }
115 
116     /**
117      * Gets the value of olePatronNoteType which is of type OlePatronNoteType
118      *
119      * @return olePatronNoteType(OlePatronNoteType)
120      */
121     public OlePatronNoteType getOlePatronNoteType() {
122         return olePatronNoteType;
123     }
124 
125     /**
126      * Sets the value for olePatronNoteType which is of type OlePatronNoteType
127      *
128      * @param olePatronNoteType(OlePatronNoteType)
129      *
130      */
131     public void setOlePatronNoteType(OlePatronNoteType olePatronNoteType) {
132         this.olePatronNoteType = olePatronNoteType;
133     }
134 
135     /**
136      * Gets the value of olePatron which is of type OlePatronDocument
137      *
138      * @return olePatron(OlePatronDocument)
139      */
140     public OlePatronDocument getOlePatron() {
141         return olePatron;
142     }
143 
144     /**
145      * Sets the value for olePatron which is of type OlePatronDocument
146      *
147      * @param olePatron(OlePatronDocument)
148      */
149     public void setOlePatron(OlePatronDocument olePatron) {
150         this.olePatron = olePatron;
151     }
152 
153     protected LinkedHashMap toStringMapper() {
154         LinkedHashMap toStringMap = new LinkedHashMap();
155         toStringMap.put("patronNoteId", patronNoteId);
156         return toStringMap;
157     }
158 
159     /**
160      * This method converts the PersistableBusinessObjectBase OlePatronNotes into immutable object OlePatronNotesDefinition
161      *
162      * @param bo
163      * @return OlePatronNotesDefinition
164      */
165     public static OlePatronNotesDefinition to(OlePatronNotes bo) {
166         if (bo == null) {
167             return null;
168         }
169         return OlePatronNotesDefinition.Builder.create(bo).build();
170     }
171 
172     /**
173      * This method converts the immutable object OlePatronNotesDefinition into PersistableBusinessObjectBase OlePatronNotes
174      *
175      * @param im
176      * @return bo
177      */
178     public static OlePatronNotes from(OlePatronNotesDefinition im) {
179         if (im == null) {
180             return null;
181         }
182 
183         OlePatronNotes bo = new OlePatronNotes();
184         bo.patronNoteId = im.getPatronNoteId();
185         bo.olePatronId = im.getOlePatronId();
186         //bo.olePatron = OlePatronDocument.from(im.getOlePatron());
187         bo.olePatronNoteType = OlePatronNoteType.from(im.getOlePatronNoteType());
188         bo.patronNoteTypeId = im.getOlePatronNoteType().getPatronNoteTypeId();
189         bo.patronNoteText = im.getPatronNoteText();
190         bo.versionNumber = im.getVersionNumber();
191         return bo;
192     }
193 
194     /**
195      * Gets the value of patronNoteId property
196      *
197      * @return patronNoteId
198      */
199     @Override
200     public String getId() {
201         return this.getPatronNoteId();
202     }
203 
204     public boolean isSelected() {
205         return selected;
206     }
207 
208     public void setSelected(boolean selected) {
209         this.selected = selected;
210     }
211 
212     public String getOperatorId() {
213         return operatorId;
214     }
215 
216     public void setOperatorId(String operatorId) {
217         this.operatorId = operatorId;
218     }
219 
220     public Timestamp getNoteCreatedOrUpdatedDate() {
221         return noteCreatedOrUpdatedDate;
222     }
223 
224     public void setNoteCreatedOrUpdatedDate(Timestamp noteCreatedOrUpdatedDate) {
225         this.noteCreatedOrUpdatedDate = noteCreatedOrUpdatedDate;
226     }
227 }