1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.ole.select.businessobject;
18
19 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
20
21 import java.util.LinkedHashMap;
22
23
24 public class OlePersonRequestor extends PersistableBusinessObjectBase {
25
26
27 private String id;
28 private String firstName;
29 private String lastName;
30 private String name;
31 private String internalRequestorId;
32 private String externalRequestorId;
33 private String email;
34 private String phoneNumber;
35 private String requestorTypeId;
36 private String refKrimId;
37 private String requestorTypeName;
38
39 public String getRequestorTypeName() {
40 return requestorTypeName;
41 }
42
43 public void setRequestorTypeName(String requestorTypeName) {
44 this.requestorTypeName = requestorTypeName;
45 }
46
47 public String getRefKrimId() {
48 return refKrimId;
49 }
50
51 public void setRefKrimId(String refKrimId) {
52 this.refKrimId = refKrimId;
53 }
54
55 public String getRequestorTypeId() {
56 return requestorTypeId;
57 }
58
59
60 public void setRequestorTypeId(String requestorTypeId) {
61 this.requestorTypeId = requestorTypeId;
62 }
63
64
65 public String getId() {
66 return id;
67 }
68
69
70 public void setId(String id) {
71 this.id = id;
72 }
73
74
75 public String getFirstName() {
76 return firstName;
77 }
78
79
80 public void setFirstName(String firstName) {
81 this.firstName = firstName;
82 }
83
84
85 public String getLastName() {
86 return lastName;
87 }
88
89
90 public void setLastName(String lastName) {
91 this.lastName = lastName;
92 }
93
94
95 public String getName() {
96 return name;
97 }
98
99
100 public void setName(String name) {
101 this.name = name;
102 }
103
104
105 public String getInternalRequestorId() {
106 return internalRequestorId;
107 }
108
109
110 public void setInternalRequestorId(String internalRequestorId) {
111 this.internalRequestorId = internalRequestorId;
112 }
113
114
115 public String getEmail() {
116 return email;
117 }
118
119
120 public String getExternalRequestorId() {
121 return externalRequestorId;
122 }
123
124
125 public void setExternalRequestorId(String externalRequestorId) {
126 this.externalRequestorId = externalRequestorId;
127 }
128
129
130 public void setEmail(String email) {
131 this.email = email;
132 }
133
134
135 public String getPhoneNumber() {
136 return phoneNumber;
137 }
138
139
140 public void setPhoneNumber(String phoneNumber) {
141 this.phoneNumber = phoneNumber;
142 }
143
144
145 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
146
147 return null;
148 }
149
150
151 }