1 package org.kuali.ole.ingest.pojo;
2
3 /**
4 * OlePatronNote is a business object class for Ole Patron Note Document
5 */
6 public class OlePatronNote {
7 private String noteType;
8 private String note;
9 private boolean active;
10 /**
11 * Gets the noteType attribute.
12 * @return Returns the note.
13 */
14 public String getNoteType() {
15 return noteType;
16 }
17 /**
18 * Sets the noteType attribute value.
19 * @param noteType The noteType to set.
20 */
21 public void setNoteType(String noteType) {
22 this.noteType = noteType;
23 }
24 /**
25 * Gets the active attribute.
26 * @return Returns the note.
27 */
28 public boolean isActive() {
29 return active;
30 }
31 /**
32 * Sets the active attribute value.
33 * @param active The active to set.
34 */
35 public void setActive(boolean active) {
36 this.active = active;
37 }
38 /**
39 * Gets the note attribute.
40 * @return Returns the note.
41 */
42 public String getNote() {
43 return note;
44 }
45 /**
46 * Sets the note attribute value.
47 * @param note The note to set.
48 */
49 public void setNote(String note) {
50 this.note = note;
51 }
52 }