1 package org.kuali.ole.ncip.bo;
2
3
4
5
6
7
8
9
10 public class OLECheckInItem {
11 public String title;
12 public String author;
13 public String description;
14 public String callNumber;
15 public String userId;
16 public String userType;
17 public String itemType;
18 public String errorMessage;
19 public String barcode;
20
21 public String getTitle() {
22 return title;
23 }
24
25 public void setTitle(String title) {
26 this.title = title;
27 }
28
29 public String getAuthor() {
30 return author;
31 }
32
33 public void setAuthor(String author) {
34 this.author = author;
35 }
36
37 public String getDescription() {
38 return description;
39 }
40
41 public void setDescription(String description) {
42 this.description = description;
43 }
44
45 public String getCallNumber() {
46 return callNumber;
47 }
48
49 public void setCallNumber(String callNumber) {
50 this.callNumber = callNumber;
51 }
52
53 public String getUserId() {
54 return userId;
55 }
56
57 public void setUserId(String userId) {
58 this.userId = userId;
59 }
60
61 public String getErrorMessage() {
62 return errorMessage;
63 }
64
65 public void setErrorMessage(String errorMessage) {
66 this.errorMessage = errorMessage;
67 }
68
69 public String getUserType() {
70 return userType;
71 }
72
73 public void setUserType(String userType) {
74 this.userType = userType;
75 }
76
77 public String getItemType() {
78 return itemType;
79 }
80
81 public void setItemType(String itemType) {
82 this.itemType = itemType;
83 }
84
85 public String getBarcode() {
86 return barcode;
87 }
88
89 public void setBarcode(String barcode) {
90 this.barcode = barcode;
91 }
92 }