Skip to main content
summaryrefslogtreecommitdiffstats
blob: db2caeaa685819d8ac5c1b2cb83f7df50b3fbcb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.jdk.core.directory;

import java.io.Serializable;
import java.util.ArrayList;

/**
 * @author Jeff C. Phillips
 */
public class DirectoryPerson implements Comparable<Object>, Serializable {

   private static final long serialVersionUID = -2333305323300083640L;
   private ArrayList<Integer> policies = null;
   private int bemsid;
   private int bluesId;
   private String building;
   private String city;
   private String country;
   private String department;
   private String departmentName;
   private String email;
   private String externalCompany;
   private String fullName;
   private String hRDeptDesc;
   private String hRDeptNumber;
   private String mailCode;
   private String mailStop;
   private String manager;
   private String personType;
   private String phone;
   private String searchName;
   private String sponsor;
   private String state;
   private String title;
   private String uSPersonStatus;
   private boolean hasPolicy = false;

   public DirectoryPerson() {
      policies = new ArrayList<Integer>();
      bemsid = -1;
      bluesId = -1;
      building = "";
      city = "";
      country = "";
      department = "";
      departmentName = "";
      email = "";
      externalCompany = "";
      fullName = "";
      hRDeptDesc = "";
      hRDeptNumber = "";
      mailCode = "";
      mailStop = "";
      manager = "";
      personType = "";
      phone = "";
      searchName = "";
      sponsor = "";
      state = "";
      title = "";
      uSPersonStatus = "";
   }

   /**
    * @return Returns the fullName.
    */
   public String getFullName() {
      return fullName;
   }

   /**
    * @param fullName The fullName to set.
    */
   public void setFullName(String fullName) {
      this.fullName = fullName;
   }

   /**
    * @return Returns the bems.
    */
   public int getBemsid() {
      return bemsid;
   }

   /**
    * @param bems The bems to set.
    */
   public void setBemsid(int bems) {
      this.bemsid = bems;
   }

   /**
    * @return Returns the bluesId.
    */
   public int getBluesId() {
      return bluesId;
   }

   /**
    * @param bluesId The bluesId to set.
    */
   public void setBluesId(int bluesId) {
      this.bluesId = bluesId;
   }

   /**
    * @return Returns the building.
    */
   public String getBuilding() {
      return building;
   }

   /**
    * @param building The building to set.
    */
   public void setBuilding(String building) {
      this.building = building;
   }

   /**
    * @return Returns the city.
    */
   public String getCity() {
      return city;
   }

   /**
    * @param city The city to set.
    */
   public void setCity(String city) {
      this.city = city;
   }

   /**
    * @return Returns the country.
    */
   public String getCountry() {
      return country;
   }

   /**
    * @param country The country to set.
    */
   public void setCountry(String country) {
      this.country = country;
   }

   /**
    * @return Returns the department.
    */
   public String getDepartment() {
      return department;
   }

   /**
    * @param department The department to set.
    */
   public void setDepartment(String department) {
      this.department = department;
   }

   /**
    * @return Returns the departmentName.
    */
   public String getDepartmentName() {
      return departmentName;
   }

   /**
    * @param departmentName The departmentName to set.
    */
   public void setDepartmentName(String departmentName) {
      this.departmentName = departmentName;
   }

   /**
    * @return Returns the email.
    */
   public String getEmail() {
      return email;
   }

   /**
    * @param email The email to set.
    */
   public void setEmail(String email) {
      this.email = email;
   }

   /**
    * @return Returns the externalCompany.
    */
   public String getExternalCompany() {
      return externalCompany;
   }

   /**
    * @param externalCompany The externalCompany to set.
    */
   public void setExternalCompany(String externalCompany) {
      this.externalCompany = externalCompany;
   }

   /**
    * @return Returns the hRDeptDesc.
    */
   public String getHRDeptDesc() {
      return hRDeptDesc;
   }

   /**
    * @param deptDesc The hRDeptDesc to set.
    */
   public void setHRDeptDesc(String deptDesc) {
      hRDeptDesc = deptDesc;
   }

   /**
    * @return Returns the hRDeptNumber.
    */
   public String getHRDeptNumber() {
      return hRDeptNumber;
   }

   /**
    * @param deptNumber The hRDeptNumber to set.
    */
   public void setHRDeptNumber(String deptNumber) {
      hRDeptNumber = deptNumber;
   }

   /**
    * @return Returns the mailCode.
    */
   public String getMailCode() {
      return mailCode;
   }

   /**
    * @param mailCode The mailCode to set.
    */
   public void setMailCode(String mailCode) {
      this.mailCode = mailCode;
   }

   /**
    * @return Returns the mailStop.
    */
   public String getMailStop() {
      return mailStop;
   }

   /**
    * @param mailStop The mailStop to set.
    */
   public void setMailStop(String mailStop) {
      this.mailStop = mailStop;
   }

   /**
    * @return Returns the manager.
    */
   public String getManager() {
      return manager;
   }

   /**
    * @param manager The manager to set.
    */
   public void setManager(String manager) {
      this.manager = manager;
   }

   /**
    * @return Returns the personType.
    */
   public String getPersonType() {
      return personType;
   }

   /**
    * @param personType The personType to set.
    */
   public void setPersonType(String personType) {
      this.personType = personType;
   }

   /**
    * @return Returns the phone.
    */
   public String getPhone() {
      return phone;
   }

   /**
    * @param phone The phone to set.
    */
   public void setPhone(String phone) {
      this.phone = phone;
   }

   /**
    * @return Returns the searchName.
    */
   public String getSearchName() {
      return searchName;
   }

   /**
    * @param searchName The searchName to set.
    */
   public void setSearchName(String searchName) {
      this.searchName = searchName;
   }

   /**
    * @return Returns the sponsor.
    */
   public String getSponsor() {
      return sponsor;
   }

   /**
    * @param sponsor The sponsor to set.
    */
   public void setSponsor(String sponsor) {
      this.sponsor = sponsor;
   }

   /**
    * @return Returns the state.
    */
   public String getState() {
      return state;
   }

   /**
    * @param state The state to set.
    */
   public void setState(String state) {
      this.state = state;
   }

   /**
    * @return Returns the title.
    */
   public String getTitle() {
      return title;
   }

   /**
    * @param title The title to set.
    */
   public void setTitle(String title) {
      this.title = title;
   }

   /**
    * @return Returns the uSPersonStatus.
    */
   public String getUSPersonStatus() {
      return uSPersonStatus;
   }

   /**
    * @param personStatus The uSPersonStatus to set.
    */
   public void setUSPersonStatus(String personStatus) {
      uSPersonStatus = personStatus;
   }

   @Override
   public int compareTo(Object person) {
      return fullName.compareTo(((DirectoryPerson) person).fullName);
   }

   @Override
   public boolean equals(Object obj) {
      if (!(obj instanceof DirectoryPerson)) {
         return false;
      }
      DirectoryPerson dp = (DirectoryPerson) obj;
      return this.fullName.equals(dp.fullName);
   }

   @Override
   public int hashCode() {
      return fullName.hashCode();
   }

   /**
    * @return Returns the policies.
    */
   public ArrayList<Integer> getPolicies() {
      return policies;
   }

   /**
    * @param policies The policies to set.
    */
   public void setPolicies(ArrayList<Integer> policies) {
      this.policies = policies;
   }

   public boolean isHasPolicy() {
      return hasPolicy;
   }

   public void setHasPolicy(boolean hasPolicy) {
      this.hasPolicy = hasPolicy;
   }

   @Override
   public String toString() {
      return fullName + " : " + this.bemsid + " : " + email;
   }
}

Back to the top