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:55 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OLECheckOutItem {
11      public String dueDate;
12      public String renewalCount;
13      public String userType;
14      public String itemType;
15      public String errorMessage;
16      public String barcode;
17      public String patronId;
18      public String getDueDate() {
19          return dueDate;
20      }
21  
22      public void setDueDate(String dueDate) {
23          this.dueDate = dueDate;
24      }
25  
26      public String getRenewalCount() {
27          return renewalCount;
28      }
29  
30      public void setRenewalCount(String renewalCount) {
31          this.renewalCount = renewalCount;
32      }
33  
34      public String getUserType() {
35          return userType;
36      }
37  
38      public void setUserType(String userType) {
39          this.userType = userType;
40      }
41  
42      public String getItemType() {
43          return itemType;
44      }
45  
46      public void setItemType(String itemType) {
47          this.itemType = itemType;
48      }
49  
50      public String getErrorMessage() {
51          return errorMessage;
52      }
53  
54      public void setErrorMessage(String errorMessage) {
55          this.errorMessage = errorMessage;
56      }
57  
58  
59  
60      public String getPatronId() {
61          return patronId;
62      }
63  
64      public void setPatronId(String patronId) {
65          this.patronId = patronId;
66      }
67  
68      public String getBarcode() {
69          return barcode;
70      }
71  
72      public void setBarcode(String barcode) {
73          this.barcode = barcode;
74      }
75  }