001/* 002 * Copyright 2013 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community License, Version 1.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl1.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.ole.select.document.web.struts; 017 018import org.kuali.rice.kns.web.struts.form.LookupForm; 019 020public class OlePatronDocumentLookUpForm extends LookupForm { 021 022 private String olePatronId; 023 private String barcode; 024 private String firstName; 025 private String lastName; 026 private String borrowerType; 027 private String emailAddress; 028 private boolean activeIndicator; 029 030 public String getOlePatronId() { 031 return olePatronId; 032 } 033 034 public void setOlePatronId(String olePatronId) { 035 this.olePatronId = olePatronId; 036 } 037 038 public String getBarcode() { 039 return barcode; 040 } 041 042 public void setBarcode(String barcode) { 043 this.barcode = barcode; 044 } 045 046 public String getFirstName() { 047 return firstName; 048 } 049 050 public void setFirstName(String firstName) { 051 this.firstName = firstName; 052 } 053 054 public String getLastName() { 055 return lastName; 056 } 057 058 public void setLastName(String lastName) { 059 this.lastName = lastName; 060 } 061 062 public String getBorrowerType() { 063 return borrowerType; 064 } 065 066 public void setBorrowerType(String borrowerType) { 067 this.borrowerType = borrowerType; 068 } 069 070 public String getEmailAddress() { 071 return emailAddress; 072 } 073 074 public void setEmailAddress(String emailAddress) { 075 this.emailAddress = emailAddress; 076 } 077 078 public boolean isActiveIndicator() { 079 return activeIndicator; 080 } 081 082 public void setActiveIndicator(boolean activeIndicator) { 083 this.activeIndicator = activeIndicator; 084 } 085 086 087}