1   
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  
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  }