1 package org.kuali.ole.ncip.bo;
2
3 import org.codehaus.jackson.annotate.JsonAutoDetect;
4 import org.codehaus.jackson.annotate.JsonIgnore;
5 import org.codehaus.jackson.annotate.JsonMethod;
6 import org.codehaus.jackson.annotate.JsonProperty;
7
8
9
10
11
12
13
14
15 @JsonAutoDetect(JsonMethod.FIELD)
16 public class OLECheckOutItem {
17
18 @JsonProperty("code")
19 public String code;
20
21 @JsonProperty("message")
22 public String message;
23
24 @JsonProperty("dueDate")
25 public String dueDate;
26
27 @JsonProperty("renewalCount")
28 public String renewalCount;
29
30 @JsonProperty("userType")
31 public String userType;
32
33 @JsonProperty("itemType")
34 public String itemType;
35
36 @JsonProperty("barcode")
37 public String barcode;
38
39 @JsonProperty("patronId")
40 public String patronId;
41
42 @JsonProperty("patronBarcode")
43 public String patronBarcode;
44
45
46 @JsonIgnore
47 private String titleIdentifier;
48
49 @JsonIgnore
50 private String feeType;
51
52 @JsonIgnore
53 private String feeAmount;
54
55 @JsonIgnore
56 private String itemProperties;
57
58 @JsonIgnore
59 private String transactionId;
60
61
62
63
64 public String getDueDate() {
65 return dueDate;
66 }
67
68 public void setDueDate(String dueDate) {
69 this.dueDate = dueDate;
70 }
71
72 public String getRenewalCount() {
73 return renewalCount;
74 }
75
76 public void setRenewalCount(String renewalCount) {
77 this.renewalCount = renewalCount;
78 }
79
80 public String getUserType() {
81 return userType;
82 }
83
84 public void setUserType(String userType) {
85 this.userType = userType;
86 }
87
88 public String getItemType() {
89 return itemType;
90 }
91
92 public void setItemType(String itemType) {
93 this.itemType = itemType;
94 }
95
96
97 public String getPatronId() {
98 return patronId;
99 }
100
101 public void setPatronId(String patronId) {
102 this.patronId = patronId;
103 }
104
105 public String getBarcode() {
106 return barcode;
107 }
108
109 public void setBarcode(String barcode) {
110 this.barcode = barcode;
111 }
112
113 public String getMessage() {
114 return message;
115 }
116
117 public void setMessage(String message) {
118 this.message = message;
119 }
120
121 public String getCode() {
122 return code;
123 }
124
125 public void setCode(String code) {
126 this.code = code;
127 }
128
129 public String getPatronBarcode() {
130 return patronBarcode;
131 }
132
133 public void setPatronBarcode(String patronBarcode) {
134 this.patronBarcode = patronBarcode;
135 }
136
137 public String getTitleIdentifier() {
138 return titleIdentifier;
139 }
140
141 public void setTitleIdentifier(String titleIdentifier) {
142 this.titleIdentifier = titleIdentifier;
143 }
144
145 public String getFeeType() {
146 return feeType;
147 }
148
149 public void setFeeType(String feeType) {
150 this.feeType = feeType;
151 }
152
153 public String getFeeAmount() {
154 return feeAmount;
155 }
156
157 public void setFeeAmount(String feeAmount) {
158 this.feeAmount = feeAmount;
159 }
160
161 public String getItemProperties() {
162 return itemProperties;
163 }
164
165 public void setItemProperties(String itemProperties) {
166 this.itemProperties = itemProperties;
167 }
168
169 public String getTransactionId() {
170 return transactionId;
171 }
172
173 public void setTransactionId(String transactionId) {
174 this.transactionId = transactionId;
175 }
176 }