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 PersonRequestorLookUpForm extends LookupForm {
21
22 private String id;
23 private String firstName;
24 private String lastName;
25 private String name;
26 private String internalRequestorId;
27 private String externalRequestorId;
28 private String email;
29 private String phoneNumber;
30 private String requestorTypeId;
31 private String refKrimId;
32
33 public String getRefKrimId() {
34 return refKrimId;
35 }
36
37 public void setRefKrimId(String refKrimId) {
38 this.refKrimId = refKrimId;
39 }
40
41 public String getRequestorTypeId() {
42 return requestorTypeId;
43 }
44
45 public void setRequestorTypeId(String requestorTypeId) {
46 this.requestorTypeId = requestorTypeId;
47 }
48
49 public String getId() {
50 return id;
51 }
52
53 public void setId(String id) {
54 this.id = id;
55 }
56
57 public String getFirstName() {
58 return firstName;
59 }
60
61 public void setFirstName(String firstName) {
62 this.firstName = firstName;
63 }
64
65 public String getLastName() {
66 return lastName;
67 }
68
69 public void setLastName(String lastName) {
70 this.lastName = lastName;
71 }
72
73 public String getName() {
74 return name;
75 }
76
77 public void setName(String name) {
78 this.name = name;
79 }
80
81 public String getInternalRequestorId() {
82 return internalRequestorId;
83 }
84
85 public void setInternalRequestorId(String internalRequestorId) {
86 this.internalRequestorId = internalRequestorId;
87 }
88
89 public String getEmail() {
90 return email;
91 }
92
93 public String getExternalRequestorId() {
94 return externalRequestorId;
95 }
96
97 public void setExternalRequestorId(String externalRequestorId) {
98 this.externalRequestorId = externalRequestorId;
99 }
100
101 public void setEmail(String email) {
102 this.email = email;
103 }
104
105 public String getPhoneNumber() {
106 return phoneNumber;
107 }
108
109 public void setPhoneNumber(String phoneNumber) {
110 this.phoneNumber = phoneNumber;
111 }
112
113 }