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 OLERenewItem {
17
18 @JsonProperty("code")
19 private String code;
20
21 @JsonProperty("message")
22 private String message;
23
24 @JsonProperty("pastDueDate")
25 private String pastDueDate;
26
27 @JsonProperty("newDueDate")
28 private String newDueDate;
29
30 @JsonProperty("renewalCount")
31 private String renewalCount;
32
33 @JsonProperty("itemBarcode")
34 private String itemBarcode;
35
36
37 @JsonIgnore
38 private String patronBarcode;
39
40 @JsonIgnore
41 private String titleIdentifier;
42
43 @JsonIgnore
44 private String feeType;
45
46 @JsonIgnore
47 private String feeAmount;
48
49 @JsonIgnore
50 private String mediaType;
51
52 @JsonIgnore
53 private String itemProperties;
54
55 @JsonIgnore
56 private String transactionId;
57
58
59 public String getCode() {
60 return code;
61 }
62
63 public void setCode(String code) {
64 this.code = code;
65 }
66
67 public String getMessage() {
68 return message;
69 }
70
71 public void setMessage(String message) {
72 this.message = message;
73 }
74
75 public String getPastDueDate() {
76 return pastDueDate;
77 }
78
79 public void setPastDueDate(String pastDueDate) {
80 this.pastDueDate = pastDueDate;
81 }
82
83 public String getNewDueDate() {
84 return newDueDate;
85 }
86
87 public void setNewDueDate(String newDueDate) {
88 this.newDueDate = newDueDate;
89 }
90
91 public String getRenewalCount() {
92 return renewalCount;
93 }
94
95 public void setRenewalCount(String renewalCount) {
96 this.renewalCount = renewalCount;
97 }
98
99 public String getPatronBarcode() {
100 return patronBarcode;
101 }
102
103 public void setPatronBarcode(String patronBarcode) {
104 this.patronBarcode = patronBarcode;
105 }
106
107 public String getItemBarcode() {
108 return itemBarcode;
109 }
110
111 public void setItemBarcode(String itemBarcode) {
112 this.itemBarcode = itemBarcode;
113 }
114
115 public String getTitleIdentifier() {
116 return titleIdentifier;
117 }
118
119 public void setTitleIdentifier(String titleIdentifier) {
120 this.titleIdentifier = titleIdentifier;
121 }
122
123 public String getFeeType() {
124 return feeType;
125 }
126
127 public void setFeeType(String feeType) {
128 this.feeType = feeType;
129 }
130
131 public String getFeeAmount() {
132 return feeAmount;
133 }
134
135 public void setFeeAmount(String feeAmount) {
136 this.feeAmount = feeAmount;
137 }
138
139 public String getMediaType() {
140 return mediaType;
141 }
142
143 public void setMediaType(String mediaType) {
144 this.mediaType = mediaType;
145 }
146
147 public String getItemProperties() {
148 return itemProperties;
149 }
150
151 public void setItemProperties(String itemProperties) {
152 this.itemProperties = itemProperties;
153 }
154
155 public String getTransactionId() {
156 return transactionId;
157 }
158
159 public void setTransactionId(String transactionId) {
160 this.transactionId = transactionId;
161 }
162 }