View Javadoc
1   package org.kuali.ole.ncip.bo;
2   
3   
4   import java.util.List;
5   
6   /**
7    * Created with IntelliJ IDEA.
8    * User: maheswarang
9    * Date: 7/21/13
10   * Time: 3:14 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class OLELookupUser {
14      private String code;
15      private String message;
16      private String patronId;
17      private OlePatronNameBo patronName;
18      private OlePatronEmailBo patronEmail;
19      private OlePatronAddressBo patronAddress;
20      private OlePatronPhoneBo patronPhone;
21      private List<OLEUserPrivilege> oleUserPrivileges;
22      private OLEHolds oleHolds;
23      private OLECheckedOutItems oleCheckedOutItems;
24      private OLEItemFines oleItemFines;
25  
26      public String getCode() {
27          return code;
28      }
29  
30      public void setCode(String code) {
31          this.code = code;
32      }
33  
34      public String getMessage() {
35          return message;
36      }
37  
38      public void setMessage(String message) {
39          this.message = message;
40      }
41  
42      public String getPatronId() {
43          return patronId;
44      }
45  
46      public void setPatronId(String patronId) {
47          this.patronId = patronId;
48      }
49  
50      public OlePatronNameBo getPatronName() {
51          return patronName;
52      }
53  
54      public void setPatronName(OlePatronNameBo patronName) {
55          this.patronName = patronName;
56      }
57  
58      public OlePatronEmailBo getPatronEmail() {
59          return patronEmail;
60      }
61  
62      public void setPatronEmail(OlePatronEmailBo patronEmail) {
63          this.patronEmail = patronEmail;
64      }
65  
66      public OlePatronAddressBo getPatronAddress() {
67          return patronAddress;
68      }
69  
70      public void setPatronAddress(OlePatronAddressBo patronAddress) {
71          this.patronAddress = patronAddress;
72      }
73  
74      public OlePatronPhoneBo getPatronPhone() {
75          return patronPhone;
76      }
77  
78      public void setPatronPhone(OlePatronPhoneBo patronPhone) {
79          this.patronPhone = patronPhone;
80      }
81  
82      public List<OLEUserPrivilege> getOleUserPrivileges() {
83          return oleUserPrivileges;
84      }
85  
86      public void setOleUserPrivileges(List<OLEUserPrivilege> oleUserPrivileges) {
87          this.oleUserPrivileges = oleUserPrivileges;
88      }
89  
90      public OLEHolds getOleHolds() {
91          return oleHolds;
92      }
93  
94      public void setOleHolds(OLEHolds oleHolds) {
95          this.oleHolds = oleHolds;
96      }
97  
98      public OLECheckedOutItems getOleCheckedOutItems() {
99          return oleCheckedOutItems;
100     }
101 
102     public void setOleCheckedOutItems(OLECheckedOutItems oleCheckedOutItems) {
103         this.oleCheckedOutItems = oleCheckedOutItems;
104     }
105 
106     public OLEItemFines getOleItemFines() {
107         return oleItemFines;
108     }
109 
110     public void setOleItemFines(OLEItemFines oleItemFines) {
111         this.oleItemFines = oleItemFines;
112     }
113 }