1 package org.kuali.ole.ingest.pojo;
2
3
4
5
6 public class OlePatronNote {
7 private String noteType;
8 private String note;
9 private boolean active;
10
11
12
13
14 public String getNoteType() {
15 return noteType;
16 }
17
18
19
20
21 public void setNoteType(String noteType) {
22 this.noteType = noteType;
23 }
24
25
26
27
28 public boolean isActive() {
29 return active;
30 }
31
32
33
34
35 public void setActive(boolean active) {
36 this.active = active;
37 }
38
39
40
41
42 public String getNote() {
43 return note;
44 }
45
46
47
48
49 public void setNote(String note) {
50 this.note = note;
51 }
52 }