View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   /**
6    * Created by sheiksalahudeenm on 4/10/14.
7    */
8   public class OLEPatronEntityViewBo extends PersistableBusinessObjectBase {
9       private String patronId;
10      private String patronBarcode;
11      private String patronType;
12      private String expirationDate;
13      private String entityId;
14      private String firstName;
15      private String middleName;
16      private String lastName;
17      private String suffix;
18      private String prefix;
19      private String name;
20      private boolean active;
21      private String requestorPatronId;
22      private String emailAddress;
23      private String phoneNumber;
24      private String viewBillUrl;
25      private String createBillUrl;
26      private boolean patronBillFlag;
27      private int billCount;
28      private String patronBillFileName;
29      private String patronTypeId;
30      private int loanCount;
31      private int tempCirculationHistoryCount;
32      private int requestedItemRecordsCount;
33  
34      public String getPatronId() {
35          return patronId;
36      }
37  
38      public void setPatronId(String patronId) {
39          this.patronId = patronId;
40      }
41  
42      public String getPatronBarcode() {
43          return patronBarcode;
44      }
45  
46      public void setPatronBarcode(String patronBarcode) {
47          this.patronBarcode = patronBarcode;
48      }
49  
50      public String getPatronType() {
51          return patronType;
52      }
53  
54      public void setPatronType(String patronType) {
55          this.patronType = patronType;
56      }
57  
58      public String getExpirationDate() {
59          return expirationDate;
60      }
61  
62      public void setExpirationDate(String expirationDate) {
63          this.expirationDate = expirationDate;
64      }
65  
66      public String getEntityId() {
67          return entityId;
68      }
69  
70      public void setEntityId(String entityId) {
71          this.entityId = entityId;
72      }
73  
74      public String getFirstName() {
75          return firstName;
76      }
77  
78      public void setFirstName(String firstName) {
79          this.firstName = firstName;
80      }
81  
82      public String getMiddleName() {
83          return middleName;
84      }
85  
86      public void setMiddleName(String middleName) {
87          this.middleName = middleName;
88      }
89  
90      public String getLastName() {
91          return lastName;
92      }
93  
94      public void setLastName(String lastName) {
95          this.lastName = lastName;
96      }
97  
98      public String getSuffix() {
99          return suffix;
100     }
101 
102     public void setSuffix(String suffix) {
103         this.suffix = suffix;
104     }
105 
106     public String getPrefix() {
107         return prefix;
108     }
109 
110     public void setPrefix(String prefix) {
111         this.prefix = prefix;
112     }
113 
114     public boolean isActive() {
115         return active;
116     }
117 
118     public void setActive(boolean active) {
119         this.active = active;
120     }
121 
122     public String getName() {
123         return name;
124     }
125 
126     public void setName(String name) {
127         this.name = name;
128     }
129 
130     public String getRequestorPatronId() {
131         return requestorPatronId;
132     }
133 
134     public void setRequestorPatronId(String requestorPatronId) {
135         this.requestorPatronId = requestorPatronId;
136     }
137 
138     public String getEmailAddress() {
139         return emailAddress;
140     }
141 
142     public void setEmailAddress(String emailAddress) {
143         this.emailAddress = emailAddress;
144     }
145 
146     public String getPhoneNumber() {
147         return phoneNumber;
148     }
149 
150     public void setPhoneNumber(String phoneNumber) {
151         this.phoneNumber = phoneNumber;
152     }
153 
154     public boolean isPatronBillFlag() {
155         return patronBillFlag;
156     }
157 
158     public void setPatronBillFlag(boolean patronBillFlag) {
159         this.patronBillFlag = patronBillFlag;
160     }
161 
162     public int getBillCount() {
163         return billCount;
164     }
165 
166     public void setBillCount(int billCount) {
167         this.billCount = billCount;
168     }
169 
170     public String getViewBillUrl() {
171         return viewBillUrl;
172     }
173 
174     public void setViewBillUrl(String viewBillUrl) {
175         this.viewBillUrl = viewBillUrl;
176     }
177 
178     public String getCreateBillUrl() {
179         return createBillUrl;
180     }
181 
182     public void setCreateBillUrl(String createBillUrl) {
183         this.createBillUrl = createBillUrl;
184     }
185 
186     public String getPatronBillFileName() {
187         return patronBillFileName;
188     }
189 
190     public void setPatronBillFileName(String patronBillFileName) {
191         this.patronBillFileName = patronBillFileName;
192     }
193 
194     public String getPatronTypeId() {
195         return patronTypeId;
196     }
197 
198     public void setPatronTypeId(String patronTypeId) {
199         this.patronTypeId = patronTypeId;
200     }
201 
202     public int getLoanCount() {
203         return loanCount;
204     }
205 
206     public void setLoanCount(int loanCount) {
207         this.loanCount = loanCount;
208     }
209 
210     public int getTempCirculationHistoryCount() {
211         return tempCirculationHistoryCount;
212     }
213 
214     public void setTempCirculationHistoryCount(int tempCirculationHistoryCount) {
215         this.tempCirculationHistoryCount = tempCirculationHistoryCount;
216     }
217 
218     public int getRequestedItemRecordsCount() {
219         return requestedItemRecordsCount;
220     }
221 
222     public void setRequestedItemRecordsCount(int requestedItemRecordsCount) {
223         this.requestedItemRecordsCount = requestedItemRecordsCount;
224     }
225 }