1 package org.kuali.ole.deliver.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5
6
7
8
9
10
11
12 public class OLEFlaggedItems extends PersistableBusinessObjectBase {
13 private String title;
14 private String barcode;
15 private String callNumber;
16 private String copyNumber;
17 private String flagType;
18 private String flagNote;
19 private String location;
20
21 private boolean claimsReturned;
22 private boolean damaged;
23 private boolean missingPiece;
24
25 private String claimsReturnedNote;
26 private String damagedNote;
27 private String missingPieceNote;
28
29 private String itemUuid;
30 private String instanceUuid;
31 private String bibUuid;
32
33 private String patronId;
34 private String patronNote;
35 private String PatronNoteId;
36 private String patronFlagType;
37 private String patronBarcode;
38 private String patronName;
39
40 public String getTitle() {
41 return title;
42 }
43
44 public void setTitle(String title) {
45 this.title = title;
46 }
47
48 public String getBarcode() {
49 return barcode;
50 }
51
52 public void setBarcode(String barcode) {
53 this.barcode = barcode;
54 }
55
56 public String getCallNumber() {
57 return callNumber;
58 }
59
60 public void setCallNumber(String callNumber) {
61 this.callNumber = callNumber;
62 }
63
64 public String getCopyNumber() {
65 return copyNumber;
66 }
67
68 public void setCopyNumber(String copyNumber) {
69 this.copyNumber = copyNumber;
70 }
71
72 public String getFlagType() {
73 return flagType;
74 }
75
76 public void setFlagType(String flagType) {
77 this.flagType = flagType;
78 }
79
80 public String getFlagNote() {
81 return flagNote;
82 }
83
84 public void setFlagNote(String flagNote) {
85 this.flagNote = flagNote;
86 }
87
88 public boolean isClaimsReturned() {
89 return claimsReturned;
90 }
91
92 public void setClaimsReturned(boolean claimsReturned) {
93 this.claimsReturned = claimsReturned;
94 }
95
96 public boolean isDamaged() {
97 return damaged;
98 }
99
100 public void setDamaged(boolean damaged) {
101 this.damaged = damaged;
102 }
103
104 public boolean isMissingPiece() {
105 return missingPiece;
106 }
107
108 public void setMissingPiece(boolean missingPiece) {
109 this.missingPiece = missingPiece;
110 }
111
112 public String getClaimsReturnedNote() {
113 return claimsReturnedNote;
114 }
115
116 public void setClaimsReturnedNote(String claimsReturnedNote) {
117 this.claimsReturnedNote = claimsReturnedNote;
118 }
119
120 public String getDamagedNote() {
121 return damagedNote;
122 }
123
124 public void setDamagedNote(String damagedNote) {
125 this.damagedNote = damagedNote;
126 }
127
128 public String getMissingPieceNote() {
129 return missingPieceNote;
130 }
131
132 public void setMissingPieceNote(String missingPieceNote) {
133 this.missingPieceNote = missingPieceNote;
134 }
135
136 public String getLocation() {
137 return location;
138 }
139
140 public void setLocation(String location) {
141 this.location = location;
142 }
143
144 public String getItemUuid() {
145 return itemUuid;
146 }
147
148 public void setItemUuid(String itemUuid) {
149 this.itemUuid = itemUuid;
150 }
151
152 public String getInstanceUuid() {
153 return instanceUuid;
154 }
155
156 public void setInstanceUuid(String instanceUuid) {
157 this.instanceUuid = instanceUuid;
158 }
159
160 public String getBibUuid() {
161 return bibUuid;
162 }
163
164 public void setBibUuid(String bibUuid) {
165 this.bibUuid = bibUuid;
166 }
167
168 public String getPatronId() {
169 return patronId;
170 }
171
172 public void setPatronId(String patronId) {
173 this.patronId = patronId;
174 }
175
176 public String getPatronNote() {
177 return patronNote;
178 }
179
180 public void setPatronNote(String patronNote) {
181 this.patronNote = patronNote;
182 }
183
184 public String getPatronNoteId() {
185 return PatronNoteId;
186 }
187
188 public void setPatronNoteId(String patronNoteId) {
189 PatronNoteId = patronNoteId;
190 }
191
192 public String getPatronFlagType() {
193 return patronFlagType;
194 }
195
196 public void setPatronFlagType(String patronFlagType) {
197 this.patronFlagType = patronFlagType;
198 }
199
200 public String getPatronBarcode() {
201 return patronBarcode;
202 }
203
204 public void setPatronBarcode(String patronBarcode) {
205 this.patronBarcode = patronBarcode;
206 }
207
208 public String getPatronName() {
209 return patronName;
210 }
211
212 public void setPatronName(String patronName) {
213 this.patronName = patronName;
214 }
215 }