View Javadoc
1   package org.kuali.ole.ncip.bo;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: maheswarang
6    * Date: 7/29/13
7    * Time: 7:53 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OLECheckInItem {
11      private String code;
12      private String message;
13      private  String title;
14      private  String author;
15      private  String description;
16      private  String callNumber;
17      private  String userId;
18      private String userType;
19      private String itemType;
20      private String barcode;
21  
22  
23  
24  
25      public String getTitle() {
26          return title;
27      }
28  
29      public void setTitle(String title) {
30          this.title = title;
31      }
32  
33      public String getAuthor() {
34          return author;
35      }
36  
37      public void setAuthor(String author) {
38          this.author = author;
39      }
40  
41      public String getDescription() {
42          return description;
43      }
44  
45      public void setDescription(String description) {
46          this.description = description;
47      }
48  
49      public String getCallNumber() {
50          return callNumber;
51      }
52  
53      public void setCallNumber(String callNumber) {
54          this.callNumber = callNumber;
55      }
56  
57      public String getUserId() {
58          return userId;
59      }
60  
61      public void setUserId(String userId) {
62          this.userId = userId;
63      }
64  
65  
66      public String getUserType() {
67          return userType;
68      }
69  
70      public void setUserType(String userType) {
71          this.userType = userType;
72      }
73  
74      public String getItemType() {
75          return itemType;
76      }
77  
78      public void setItemType(String itemType) {
79          this.itemType = itemType;
80      }
81  
82      public String getBarcode() {
83          return barcode;
84      }
85  
86      public void setBarcode(String barcode) {
87          this.barcode = barcode;
88      }
89  
90      public String getMessage() {
91          return message;
92      }
93  
94      public void setMessage(String message) {
95          this.message = message;
96      }
97  
98      public String getCode() {
99          return code;
100     }
101 
102     public void setCode(String code) {
103         this.code = code;
104     }
105 }