1 package org.kuali.ole.deliver.drools;
2
3
4
5
6 public class CheckedInItem {
7
8 private String itemBarcode;
9 private String itemId;
10 private String itemUuid;
11 private String bibUuid;
12 private String instanceUuid;
13 private String title;
14 private String author;
15 private String location;
16 private String locationCode;
17 private String callNumber;
18 private String copyNumber;
19 private String enumeration;
20 private String chronology;
21 private String checkInDate;
22 private String itemStatus;
23 private String billName;
24 private String routeToLocation;
25 private String patronId;
26 private String patronBarcode;
27 private String borrowerType;
28 private String checkinNote;
29 private String itemType;
30
31 public String getItemBarcode() {
32 return itemBarcode;
33 }
34
35 public void setItemBarcode(String itemBarcode) {
36 this.itemBarcode = itemBarcode;
37 }
38
39 public String getTitle() {
40 return title;
41 }
42
43 public void setTitle(String title) {
44 this.title = title;
45 }
46
47 public String getAuthor() {
48 return author;
49 }
50
51 public void setAuthor(String author) {
52 this.author = author;
53 }
54
55 public String getLocation() {
56 return location;
57 }
58
59 public void setLocation(String location) {
60 this.location = location;
61 }
62
63 public String getLocationCode() {
64 return locationCode;
65 }
66
67 public void setLocationCode(String locationCode) {
68 this.locationCode = locationCode;
69 }
70
71 public String getCallNumber() {
72 return callNumber;
73 }
74
75 public void setCallNumber(String callNumber) {
76 this.callNumber = callNumber;
77 }
78
79 public String getCopyNumber() {
80 return copyNumber;
81 }
82
83 public void setCopyNumber(String copyNumber) {
84 this.copyNumber = copyNumber;
85 }
86
87 public String getEnumeration() {
88 return enumeration;
89 }
90
91 public void setEnumeration(String enumeration) {
92 this.enumeration = enumeration;
93 }
94
95 public String getChronology() {
96 return chronology;
97 }
98
99 public void setChronology(String chronology) {
100 this.chronology = chronology;
101 }
102
103 public String getCheckInDate() {
104 return checkInDate;
105 }
106
107 public void setCheckInDate(String checkInDate) {
108 this.checkInDate = checkInDate;
109 }
110
111 public String getItemStatus() {
112 return itemStatus;
113 }
114
115 public void setItemStatus(String itemStatus) {
116 this.itemStatus = itemStatus;
117 }
118
119 public String getBillName() {
120 return billName;
121 }
122
123 public void setBillName(String billName) {
124 this.billName = billName;
125 }
126
127 public String getRouteToLocation() {
128 return routeToLocation;
129 }
130
131 public void setRouteToLocation(String routeToLocation) {
132 this.routeToLocation = routeToLocation;
133 }
134
135 public String getItemUuid() {
136 return itemUuid;
137 }
138
139 public void setItemUuid(String itemUuid) {
140 this.itemUuid = itemUuid;
141 }
142
143 public String getItemId() {
144 return itemId;
145 }
146
147 public void setItemId(String itemId) {
148 this.itemId = itemId;
149 }
150
151 public String getBibUuid() {
152 return bibUuid;
153 }
154
155 public void setBibUuid(String bibUuid) {
156 this.bibUuid = bibUuid;
157 }
158
159 public String getInstanceUuid() {
160 return instanceUuid;
161 }
162
163 public void setInstanceUuid(String instanceUuid) {
164 this.instanceUuid = instanceUuid;
165 }
166
167 public String getPatronId() {
168 return patronId;
169 }
170
171 public void setPatronId(String patronId) {
172 this.patronId = patronId;
173 }
174
175 public String getPatronBarcode() {
176 return patronBarcode;
177 }
178
179 public void setPatronBarcode(String patronBarcode) {
180 this.patronBarcode = patronBarcode;
181 }
182
183 public String getBorrowerType() {
184 return borrowerType;
185 }
186
187 public void setBorrowerType(String borrowerType) {
188 this.borrowerType = borrowerType;
189 }
190
191 public String getCheckinNote() {
192 return checkinNote;
193 }
194
195 public void setCheckinNote(String checkinNote) {
196 this.checkinNote = checkinNote;
197 }
198
199 public String getItemType() {
200 return itemType;
201 }
202
203 public void setItemType(String itemType) {
204 this.itemType = itemType;
205 }
206 }