1 package org.kuali.ole.deliver.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.util.Date;
6
7
8
9
10
11
12
13
14 public class OleTemporaryCirculationHistory extends PersistableBusinessObjectBase {
15
16 private String temporaryCirculationHistoryId;
17 private String olePatronId;
18 private String itemId;
19 private String circulationLocationId;
20 private String circulationLocationCode;
21 private Date checkInDate;
22 private String callNumber;
23 private String copyNumber;
24 private String shelvingLocation;
25 private String volumeNumber;
26 private String itemStatus;
27 private String title;
28 private String author;
29 private String itemType;
30 private String itemUuid;
31
32 public String getCirculationLocationCode() {
33 return circulationLocationCode;
34 }
35
36 public void setCirculationLocationCode(String circulationLocationCode) {
37 this.circulationLocationCode = circulationLocationCode;
38 }
39
40 public String getItemUuid() {
41 return itemUuid;
42 }
43
44 public void setItemUuid(String itemUuid) {
45 this.itemUuid = itemUuid;
46 }
47
48 public String getTemporaryCirculationHistoryId() {
49 return temporaryCirculationHistoryId;
50 }
51
52 public void setTemporaryCirculationHistoryId(String temporaryCirculationHistoryId) {
53 this.temporaryCirculationHistoryId = temporaryCirculationHistoryId;
54 }
55
56 public String getOlePatronId() {
57 return olePatronId;
58 }
59
60 public void setOlePatronId(String olePatronId) {
61 this.olePatronId = olePatronId;
62 }
63
64 public String getItemId() {
65 return itemId;
66 }
67
68 public void setItemId(String itemId) {
69 this.itemId = itemId;
70 }
71
72 public String getCirculationLocationId() {
73 return circulationLocationId;
74 }
75
76 public void setCirculationLocationId(String circulationLocationId) {
77 this.circulationLocationId = circulationLocationId;
78 }
79
80 public Date getCheckInDate() {
81 return checkInDate;
82 }
83
84 public void setCheckInDate(Date checkInDate) {
85 this.checkInDate = checkInDate;
86 }
87
88 public String getCallNumber() {
89 return callNumber;
90 }
91
92 public void setCallNumber(String callNumber) {
93 this.callNumber = callNumber;
94 }
95
96 public String getCopyNumber() {
97 return copyNumber;
98 }
99
100 public void setCopyNumber(String copyNumber) {
101 this.copyNumber = copyNumber;
102 }
103
104 public String getShelvingLocation() {
105 return shelvingLocation;
106 }
107
108 public void setShelvingLocation(String shelvingLocation) {
109 this.shelvingLocation = shelvingLocation;
110 }
111
112 public String getVolumeNumber() {
113 return volumeNumber;
114 }
115
116 public void setVolumeNumber(String volumeNumber) {
117 this.volumeNumber = volumeNumber;
118 }
119
120 public String getItemStatus() {
121 return itemStatus;
122 }
123
124 public void setItemStatus(String itemStatus) {
125 this.itemStatus = itemStatus;
126 }
127
128 public String getTitle() {
129 return title;
130 }
131
132 public void setTitle(String title) {
133 this.title = title;
134 }
135
136 public String getAuthor() {
137 return author;
138 }
139
140 public void setAuthor(String author) {
141 this.author = author;
142 }
143
144 public String getItemType() {
145 return itemType;
146 }
147
148 public void setItemType(String itemType) {
149 this.itemType = itemType;
150 }
151 }