View Javadoc
1   /*
2    * Copyright 2013 The Kuali Foundation.
3    *
4    * Licensed under the Educational Community License, Version 1.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl1.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.select.document.web.struts;
17  
18  import org.kuali.rice.kns.web.struts.form.LookupForm;
19  
20  public class OlePatronDocumentLookUpForm extends LookupForm {
21  
22      private String olePatronId;
23      private String barcode;
24      private String firstName;
25      private String lastName;
26      private String borrowerType;
27      private String emailAddress;
28      private boolean activeIndicator;
29  
30      public String getOlePatronId() {
31          return olePatronId;
32      }
33  
34      public void setOlePatronId(String olePatronId) {
35          this.olePatronId = olePatronId;
36      }
37  
38      public String getBarcode() {
39          return barcode;
40      }
41  
42      public void setBarcode(String barcode) {
43          this.barcode = barcode;
44      }
45  
46      public String getFirstName() {
47          return firstName;
48      }
49  
50      public void setFirstName(String firstName) {
51          this.firstName = firstName;
52      }
53  
54      public String getLastName() {
55          return lastName;
56      }
57  
58      public void setLastName(String lastName) {
59          this.lastName = lastName;
60      }
61  
62      public String getBorrowerType() {
63          return borrowerType;
64      }
65  
66      public void setBorrowerType(String borrowerType) {
67          this.borrowerType = borrowerType;
68      }
69  
70      public String getEmailAddress() {
71          return emailAddress;
72      }
73  
74      public void setEmailAddress(String emailAddress) {
75          this.emailAddress = emailAddress;
76      }
77  
78      public boolean isActiveIndicator() {
79          return activeIndicator;
80      }
81  
82      public void setActiveIndicator(boolean activeIndicator) {
83          this.activeIndicator = activeIndicator;
84      }
85  
86  
87  }