1 package org.kuali.ole.deliver.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.sql.Timestamp;
6 import java.util.Date;
7
8
9
10
11
12
13
14
15 public class OleTemporaryCirculationHistory extends PersistableBusinessObjectBase {
16
17 private String temporaryCirculationHistoryId;
18 private String olePatronId;
19 private String itemId;
20 private String circulationLocationId;
21 private String circulationLocationCode;
22 private Timestamp checkInDate;
23 private String callNumber;
24 private String copyNumber;
25 private String shelvingLocation;
26 private String volumeNumber;
27 private String itemStatus;
28 private String title;
29 private String author;
30 private String itemType;
31 private String itemUuid;
32 private Timestamp dueDate;
33 private Date checkOutDate;
34 private String proxyPatronBarcode;
35 private String proxyPatronBarcodeUrl;
36 private String proxyPatronName;
37 private String oleProxyPatronId;
38
39 public String getCirculationLocationCode() {
40 return circulationLocationCode;
41 }
42
43 public void setCirculationLocationCode(String circulationLocationCode) {
44 this.circulationLocationCode = circulationLocationCode;
45 }
46
47 public String getItemUuid() {
48 return itemUuid;
49 }
50
51 public void setItemUuid(String itemUuid) {
52 this.itemUuid = itemUuid;
53 }
54
55 public String getTemporaryCirculationHistoryId() {
56 return temporaryCirculationHistoryId;
57 }
58
59 public void setTemporaryCirculationHistoryId(String temporaryCirculationHistoryId) {
60 this.temporaryCirculationHistoryId = temporaryCirculationHistoryId;
61 }
62
63 public String getOlePatronId() {
64 return olePatronId;
65 }
66
67 public void setOlePatronId(String olePatronId) {
68 this.olePatronId = olePatronId;
69 }
70
71 public String getItemId() {
72 return itemId;
73 }
74
75 public void setItemId(String itemId) {
76 this.itemId = itemId;
77 }
78
79 public String getCirculationLocationId() {
80 return circulationLocationId;
81 }
82
83 public void setCirculationLocationId(String circulationLocationId) {
84 this.circulationLocationId = circulationLocationId;
85 }
86
87 public Timestamp getCheckInDate() {
88 return checkInDate;
89 }
90
91 public void setCheckInDate(Timestamp checkInDate) {
92 this.checkInDate = checkInDate;
93 }
94
95 public String getCallNumber() {
96 return callNumber;
97 }
98
99 public void setCallNumber(String callNumber) {
100 this.callNumber = callNumber;
101 }
102
103 public String getCopyNumber() {
104 return copyNumber;
105 }
106
107 public void setCopyNumber(String copyNumber) {
108 this.copyNumber = copyNumber;
109 }
110
111 public String getShelvingLocation() {
112 return shelvingLocation;
113 }
114
115 public void setShelvingLocation(String shelvingLocation) {
116 this.shelvingLocation = shelvingLocation;
117 }
118
119 public String getVolumeNumber() {
120 return volumeNumber;
121 }
122
123 public void setVolumeNumber(String volumeNumber) {
124 this.volumeNumber = volumeNumber;
125 }
126
127 public String getItemStatus() {
128 return itemStatus;
129 }
130
131 public void setItemStatus(String itemStatus) {
132 this.itemStatus = itemStatus;
133 }
134
135 public String getTitle() {
136 return title;
137 }
138
139 public void setTitle(String title) {
140 this.title = title;
141 }
142
143 public String getAuthor() {
144 return author;
145 }
146
147 public void setAuthor(String author) {
148 this.author = author;
149 }
150
151 public String getItemType() {
152 return itemType;
153 }
154
155 public void setItemType(String itemType) {
156 this.itemType = itemType;
157 }
158
159 public Timestamp getDueDate() {
160 return dueDate;
161 }
162
163 public void setDueDate(Timestamp dueDate) {
164 this.dueDate = dueDate;
165 }
166
167 public Date getCheckOutDate() {
168 return checkOutDate;
169 }
170
171 public void setCheckOutDate(Date checkOutDate) {
172 this.checkOutDate = checkOutDate;
173 }
174
175 public String getProxyPatronBarcode() {
176 return proxyPatronBarcode;
177 }
178
179 public void setProxyPatronBarcode(String proxyPatronBarcode) {
180 this.proxyPatronBarcode = proxyPatronBarcode;
181 }
182
183 public String getProxyPatronBarcodeUrl() {
184 return proxyPatronBarcodeUrl;
185 }
186
187 public void setProxyPatronBarcodeUrl(String proxyPatronBarcodeUrl) {
188 this.proxyPatronBarcodeUrl = proxyPatronBarcodeUrl;
189 }
190
191 public String getProxyPatronName() {
192 return proxyPatronName;
193 }
194
195 public void setProxyPatronName(String proxyPatronName) {
196 this.proxyPatronName = proxyPatronName;
197 }
198
199 public String getOleProxyPatronId() {
200 return oleProxyPatronId;
201 }
202
203 public void setOleProxyPatronId(String oleProxyPatronId) {
204 this.oleProxyPatronId = oleProxyPatronId;
205 }
206 }