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 OLECheckInItem {
17
18 @JsonProperty("code")
19 private String code;
20
21 @JsonProperty("message")
22 private String message;
23
24 @JsonProperty("title")
25 private String title;
26
27 @JsonProperty("author")
28 private String author;
29
30 @JsonProperty("description")
31 private String description;
32
33 @JsonProperty("callNumber")
34 private String callNumber;
35
36 @JsonProperty("userId")
37 private String userId;
38
39 @JsonProperty("userType")
40 private String userType;
41
42 @JsonProperty("itemType")
43 private String itemType;
44
45 @JsonProperty("barcode")
46 private String barcode;
47
48
49 @JsonIgnore
50 private String patronBarcode;
51
52 @JsonIgnore
53 private String itemLocation;
54
55
56 public String getTitle() {
57 return title;
58 }
59
60 public void setTitle(String title) {
61 this.title = title;
62 }
63
64 public String getAuthor() {
65 return author;
66 }
67
68 public void setAuthor(String author) {
69 this.author = author;
70 }
71
72 public String getDescription() {
73 return description;
74 }
75
76 public void setDescription(String description) {
77 this.description = description;
78 }
79
80 public String getCallNumber() {
81 return callNumber;
82 }
83
84 public void setCallNumber(String callNumber) {
85 this.callNumber = callNumber;
86 }
87
88 public String getUserId() {
89 return userId;
90 }
91
92 public void setUserId(String userId) {
93 this.userId = userId;
94 }
95
96
97 public String getUserType() {
98 return userType;
99 }
100
101 public void setUserType(String userType) {
102 this.userType = userType;
103 }
104
105 public String getItemType() {
106 return itemType;
107 }
108
109 public void setItemType(String itemType) {
110 this.itemType = itemType;
111 }
112
113 public String getBarcode() {
114 return barcode;
115 }
116
117 public void setBarcode(String barcode) {
118 this.barcode = barcode;
119 }
120
121 public String getMessage() {
122 return message;
123 }
124
125 public void setMessage(String message) {
126 this.message = message;
127 }
128
129 public String getCode() {
130 return code;
131 }
132
133 public void setCode(String code) {
134 this.code = code;
135 }
136
137 public String getPatronBarcode() {
138 return patronBarcode;
139 }
140
141 public void setPatronBarcode(String patronBarcode) {
142 this.patronBarcode = patronBarcode;
143 }
144
145 public String getItemLocation() {
146 return itemLocation;
147 }
148
149 public void setItemLocation(String itemLocation) {
150 this.itemLocation = itemLocation;
151 }
152 }