Reduce number of parameters in constructor
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / transport / CentralUser.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 package org.onap.portalapp.portal.transport;
39
40 import java.io.Serializable;
41 import java.util.Date;
42 import java.util.Set;
43 import java.util.TreeSet;
44
45 public class CentralUser implements Serializable {
46
47         private static final long serialVersionUID = 7060454665330579923L;
48         private Long id;
49         private Date created;
50         private Date modified;
51         private Long createdId;
52         private Long modifiedId;
53         private Long rowNum;
54
55         private Long orgId;
56         private Long managerId;
57         private String firstName;
58         private String middleInitial;
59         private String lastName;
60         private String phone;
61         private String fax;
62         private String cellular;
63         private String email;
64         private Long addressId;
65         private String alertMethodCd;
66         private String hrid;
67         private String orgUserId;
68         private String orgCode;
69         private String address1;
70         private String address2;
71         private String city;
72         private String state;
73         private String zipCode;
74         private String country;
75         private String orgManagerUserId;
76         private String locationClli;
77         private String businessCountryCode;
78         private String businessCountryName;
79         private String businessUnit;
80         private String businessUnitName;
81         private String department;
82         private String departmentName;
83         private String companyCode;
84         private String company;
85         private String zipCodeSuffix;
86         private String jobTitle;
87         private String commandChain;
88         private String siloStatus;
89         private String costCenter;
90         private String financialLocCode;
91
92         private String loginId;
93         private String loginPwd;
94         private Date lastLoginDate;
95         private boolean active;
96         private boolean internal;
97         private Long selectedProfileId;
98         private Long timeZoneId;
99         private boolean online;
100         private String chatId;
101
102         private Set<CentralUserApp> userApps = new TreeSet<>();
103         private Set<CentralRole> pseudoRoles = new TreeSet<>();
104
105         public CentralUser(CentralUserBuilder builder) {
106                 super();
107                 this.id = builder.id;
108                 this.created = builder.created;
109                 this.modified = builder.modified;
110                 this.createdId = builder.createdId;
111                 this.modifiedId = builder.modifiedId;
112                 this.rowNum = builder.rowNum;
113                 this.orgId = builder.orgId;
114                 this.managerId = builder.managerId;
115                 this.firstName = builder.firstName;
116                 this.middleInitial = builder.middleInitial;
117                 this.lastName = builder.lastName;
118                 this.phone = builder.phone;
119                 this.fax = builder.fax;
120                 this.cellular = builder.cellular;
121                 this.email = builder.email;
122                 this.addressId = builder.addressId;
123                 this.alertMethodCd = builder.alertMethodCd;
124                 this.hrid = builder.hrid;
125                 this.orgUserId = builder.orgUserId;
126                 this.orgCode = builder.orgCode;
127                 this.address1 = builder.address1;
128                 this.address2 = builder.address2;
129                 this.city = builder.city;
130                 this.state = builder.state;
131                 this.zipCode = builder.zipCode;
132                 this.country = builder.country;
133                 this.orgManagerUserId = builder.orgManagerUserId;
134                 this.locationClli = builder.locationClli;
135                 this.businessCountryCode = builder.businessCountryCode;
136                 this.businessCountryName = builder.businessCountryName;
137                 this.businessUnit = builder.businessUnit;
138                 this.businessUnitName = builder.businessUnitName;
139                 this.department = builder.department;
140                 this.departmentName = builder.departmentName;
141                 this.companyCode = builder.companyCode;
142                 this.company = builder.company;
143                 this.zipCodeSuffix = builder.zipCodeSuffix;
144                 this.jobTitle = builder.jobTitle;
145                 this.commandChain = builder.commandChain;
146                 this.siloStatus = builder.siloStatus;
147                 this.costCenter = builder.costCenter;
148                 this.financialLocCode = builder.financialLocCode;
149                 this.loginId = builder.loginId;
150                 this.loginPwd = builder.loginPwd;
151                 this.lastLoginDate = builder.lastLoginDate;
152                 this.active = builder.active;
153                 this.internal = builder.internal;
154                 this.selectedProfileId = builder.selectedProfileId;
155                 this.timeZoneId = builder.timeZoneId;
156                 this.online = builder.online;
157                 this.chatId = builder.chatId;
158                 this.userApps = builder.userApps;
159         }
160
161         public static class CentralUserBuilder {
162             private Long id;
163             private Date created;
164             private Date modified;
165             private Long createdId;
166             private Long modifiedId;
167             private Long rowNum;
168             private Long orgId;
169             private Long managerId;
170             private String firstName;
171             private String middleInitial;
172             private String lastName;
173             private String phone;
174             private String fax;
175             private String cellular;
176             private String email;
177             private Long addressId;
178             private String alertMethodCd;
179             private String hrid;
180             private String orgUserId;
181             private String orgCode;
182             private String address1;
183             private String address2;
184             private String city;
185             private String state;
186             private String zipCode;
187             private String country;
188             private String orgManagerUserId;
189             private String locationClli;
190             private String businessCountryCode;
191             private String businessCountryName;
192             private String businessUnit;
193             private String businessUnitName;
194             private String department;
195             private String departmentName;
196             private String companyCode;
197             private String company;
198             private String zipCodeSuffix;
199             private String jobTitle;
200             private String commandChain;
201             private String siloStatus;
202             private String costCenter;
203             private String financialLocCode;
204             private String loginId;
205             private String loginPwd;
206             private Date lastLoginDate;
207             private boolean active;
208             private boolean internal;
209             private Long selectedProfileId;
210             private Long timeZoneId;
211             private boolean online;
212             private String chatId;
213             private Set<CentralUserApp> userApps;
214
215             public CentralUserBuilder setId(Long id) {
216                 this.id = id;
217                 return this;
218             }
219
220             public CentralUserBuilder setCreated(Date created) {
221                 this.created = created;
222                 return this;
223             }
224
225             public CentralUserBuilder setModified(Date modified) {
226                 this.modified = modified;
227                 return this;
228             }
229
230         public CentralUserBuilder setCreatedId(Long createdId) {
231             this.createdId = createdId;
232             return this;
233         }
234
235             public CentralUserBuilder setModifiedId(Long modifiedId) {
236                 this.modifiedId = modifiedId;
237                 return this;
238             }
239
240             public CentralUserBuilder setRowNum(Long rowNum) {
241                 this.rowNum = rowNum;
242                 return this;
243             }
244
245             public CentralUserBuilder setOrgId(Long orgId) {
246                 this.orgId = orgId;
247                 return this;
248             }
249
250             public CentralUserBuilder setManagerId(Long managerId) {
251                 this.managerId = managerId;
252                 return this;
253             }
254
255             public CentralUserBuilder setFirstName(String firstName) {
256                 this.firstName = firstName;
257                 return this;
258             }
259
260             public CentralUserBuilder setMiddleInitial(String middleInitial) {
261                 this.middleInitial = middleInitial;
262                 return this;
263             }
264
265             public CentralUserBuilder setLastName(String lastName) {
266                 this.lastName = lastName;
267                 return this;
268             }
269
270             public CentralUserBuilder setPhone(String phone) {
271                 this.phone = phone;
272                 return this;
273             }
274
275             public CentralUserBuilder setFax(String fax) {
276                 this.fax = fax;
277                 return this;
278             }
279
280             public CentralUserBuilder setCellular(String cellular) {
281                 this.cellular = cellular;
282                 return this;
283             }
284
285             public CentralUserBuilder setEmail(String email) {
286                 this.email = email;
287                 return this;
288             }
289
290             public CentralUserBuilder setAddressId(Long addressId) {
291                 this.addressId = addressId;
292                 return this;
293             }
294
295             public CentralUserBuilder setAlertMethodCd(String alertMethodCd) {
296                 this.alertMethodCd = alertMethodCd;
297                 return this;
298             }
299
300             public CentralUserBuilder setHrid(String hrid) {
301                 this.hrid = hrid;
302                 return this;
303             }
304
305             public CentralUserBuilder setOrgUserId(String orgUserId) {
306                 this.orgUserId = orgUserId;
307                 return this;
308             }
309
310             public CentralUserBuilder setOrgCode(String orgCode) {
311                 this.orgCode = orgCode;
312                 return this;
313             }
314
315             public CentralUserBuilder setAddress1(String address1) {
316                 this.address1 = address1;
317                 return this;
318             }
319
320             public CentralUserBuilder setAddress2(String address2) {
321                 this.address2 = address2;
322                 return this;
323             }
324
325             public CentralUserBuilder setCity(String city) {
326                 this.city = city;
327                 return this;
328             }
329
330             public CentralUserBuilder setState(String state) {
331                 this.state = state;
332                 return this;
333             }
334
335             public CentralUserBuilder setZipCode(String zipCode) {
336                 this.zipCode = zipCode;
337                 return this;
338             }
339
340             public CentralUserBuilder setCountry(String country) {
341                 this.country = country;
342                 return this;
343             }
344
345             public CentralUserBuilder setOrgManagerUserId(String orgManagerUserId) {
346                 this.orgManagerUserId = orgManagerUserId;
347                 return this;
348             }
349
350             public CentralUserBuilder setLocationClli(String locationClli) {
351                 this.locationClli = locationClli;
352                 return this;
353             }
354
355             public CentralUserBuilder setBusinessCountryCode(String businessCountryCode) {
356                 this.businessCountryCode = businessCountryCode;
357                 return this;
358             }
359
360             public CentralUserBuilder setBusinessCountryName(String businessCountryName) {
361                 this.businessCountryName = businessCountryName;
362                 return this;
363             }
364
365             public CentralUserBuilder setBusinessUnit(String businessUnit) {
366                 this.businessUnit = businessUnit;
367                 return this;
368             }
369
370             public CentralUserBuilder setBusinessUnitName(String businessUnitName) {
371                 this.businessUnitName = businessUnitName;
372                 return this;
373             }
374
375             public CentralUserBuilder setDepartment(String department) {
376                 this.department = department;
377                 return this;
378             }
379
380             public CentralUserBuilder setDepartmentName(String departmentName) {
381                 this.departmentName = departmentName;
382                 return this;
383             }
384
385             public CentralUserBuilder setCompanyCode(String companyCode) {
386                 this.companyCode = companyCode;
387                 return this;
388             }
389
390             public CentralUserBuilder setCompany(String company) {
391                 this.company = company;
392                 return this;
393             }
394
395             public CentralUserBuilder setZipCodeSuffix(String zipCodeSuffix) {
396                 this.zipCodeSuffix = zipCodeSuffix;
397                 return this;
398             }
399
400             public CentralUserBuilder setJobTitle(String jobTitle) {
401                 this.jobTitle = jobTitle;
402                 return this;
403             }
404
405             public CentralUserBuilder setCommandChain(String commandChain) {
406                 this.commandChain = commandChain;
407                 return this;
408             }
409
410             public CentralUserBuilder setSiloStatus(String siloStatus) {
411                 this.siloStatus = siloStatus;
412                 return this;
413             }
414
415             public CentralUserBuilder setCostCenter(String costCenter) {
416                 this.costCenter = costCenter;
417                 return this;
418             }
419
420             public CentralUserBuilder setFinancialLocCode(String financialLocCode) {
421                 this.financialLocCode = financialLocCode;
422                 return this;
423             }
424
425             public CentralUserBuilder setLoginId(String loginId) {
426                 this.loginId = loginId;
427                 return this;
428             }
429
430             public CentralUserBuilder setLoginPwd(String loginPwd) {
431                 this.loginPwd = loginPwd;
432                 return this;
433             }
434
435             public CentralUserBuilder setLastLoginDate(Date lastLoginDate) {
436                 this.lastLoginDate = lastLoginDate;
437                 return this;
438             }
439
440             public CentralUserBuilder setActive(boolean active) {
441                 this.active = active;
442                 return this;
443             }
444
445             public CentralUserBuilder setInternal(boolean internal) {
446                 this.internal = internal;
447                 return this;
448             }
449
450             public CentralUserBuilder setSelectedProfileId(Long selectedProfileId) {
451                 this.selectedProfileId = selectedProfileId;
452                 return this;
453             }
454
455             public CentralUserBuilder setTimeZoneId(Long timeZoneId) {
456                 this.timeZoneId = timeZoneId;
457                 return this;
458             }
459
460             public CentralUserBuilder setOnline(boolean online) {
461                 this.online = online;
462                 return this;
463             }
464
465             public CentralUserBuilder setChatId(String chatId) {
466                 this.chatId = chatId;
467                 return this;
468             }
469
470             public CentralUserBuilder setUserApps(Set<CentralUserApp> userApps) {
471                 this.userApps = userApps;
472                 return this;
473             }
474
475             public CentralUser createCentralUser() {
476                 return new CentralUser(this);
477             }
478         }
479
480         /**
481          * @return the id
482          */
483         public Long getId() {
484                 return id;
485         }
486
487         /**
488          * @param id
489          *            the id to set
490          */
491         public void setId(Long id) {
492                 this.id = id;
493         }
494
495         /**
496          * @return the created
497          */
498         public Date getCreated() {
499                 return created;
500         }
501
502         /**
503          * @param created
504          *            the created to set
505          */
506         public void setCreated(Date created) {
507                 this.created = created;
508         }
509
510         /**
511          * @return the modified
512          */
513         public Date getModified() {
514                 return modified;
515         }
516
517         /**
518          * @param modified
519          *            the modified to set
520          */
521         public void setModified(Date modified) {
522                 this.modified = modified;
523         }
524
525         /**
526          * @return the createdId
527          */
528         public Long getCreatedId() {
529                 return createdId;
530         }
531
532         /**
533          * @param createdId
534          *            the createdId to set
535          */
536         public void setCreatedId(Long createdId) {
537                 this.createdId = createdId;
538         }
539
540         /**
541          * @return the modifiedId
542          */
543         public Long getModifiedId() {
544                 return modifiedId;
545         }
546
547         /**
548          * @param modifiedId
549          *            the modifiedId to set
550          */
551         public void setModifiedId(Long modifiedId) {
552                 this.modifiedId = modifiedId;
553         }
554
555         /**
556          * @return the rowNum
557          */
558         public Long getRowNum() {
559                 return rowNum;
560         }
561
562         /**
563          * @param rowNum
564          *            the rowNum to set
565          */
566         public void setRowNum(Long rowNum) {
567                 this.rowNum = rowNum;
568         }
569
570         /**
571          * @return the orgId
572          */
573         public Long getOrgId() {
574                 return orgId;
575         }
576
577         /**
578          * @param orgId
579          *            the orgId to set
580          */
581         public void setOrgId(Long orgId) {
582                 this.orgId = orgId;
583         }
584
585         /**
586          * @return the managerId
587          */
588         public Long getManagerId() {
589                 return managerId;
590         }
591
592         /**
593          * @param managerId
594          *            the managerId to set
595          */
596         public void setManagerId(Long managerId) {
597                 this.managerId = managerId;
598         }
599
600         /**
601          * @return the firstName
602          */
603         public String getFirstName() {
604                 return firstName;
605         }
606
607         /**
608          * @param firstName
609          *            the firstName to set
610          */
611         public void setFirstName(String firstName) {
612                 this.firstName = firstName;
613         }
614
615         /**
616          * @return the middleInitial
617          */
618         public String getMiddleInitial() {
619                 return middleInitial;
620         }
621
622         /**
623          * @param middleInitial
624          *            the middleInitial to set
625          */
626         public void setMiddleInitial(String middleInitial) {
627                 this.middleInitial = middleInitial;
628         }
629
630         /**
631          * @return the lastName
632          */
633         public String getLastName() {
634                 return lastName;
635         }
636
637         /**
638          * @param lastName
639          *            the lastName to set
640          */
641         public void setLastName(String lastName) {
642                 this.lastName = lastName;
643         }
644
645         /**
646          * @return the phone
647          */
648         public String getPhone() {
649                 return phone;
650         }
651
652         /**
653          * @param phone
654          *            the phone to set
655          */
656         public void setPhone(String phone) {
657                 this.phone = phone;
658         }
659
660         /**
661          * @return the fax
662          */
663         public String getFax() {
664                 return fax;
665         }
666
667         /**
668          * @param fax
669          *            the fax to set
670          */
671         public void setFax(String fax) {
672                 this.fax = fax;
673         }
674
675         /**
676          * @return the cellular
677          */
678         public String getCellular() {
679                 return cellular;
680         }
681
682         /**
683          * @param cellular
684          *            the cellular to set
685          */
686         public void setCellular(String cellular) {
687                 this.cellular = cellular;
688         }
689
690         /**
691          * @return the email
692          */
693         public String getEmail() {
694                 return email;
695         }
696
697         /**
698          * @param email
699          *            the email to set
700          */
701         public void setEmail(String email) {
702                 this.email = email;
703         }
704
705         /**
706          * @return the addressId
707          */
708         public Long getAddressId() {
709                 return addressId;
710         }
711
712         /**
713          * @param addressId
714          *            the addressId to set
715          */
716         public void setAddressId(Long addressId) {
717                 this.addressId = addressId;
718         }
719
720         /**
721          * @return the alertMethodCd
722          */
723         public String getAlertMethodCd() {
724                 return alertMethodCd;
725         }
726
727         /**
728          * @param alertMethodCd
729          *            the alertMethodCd to set
730          */
731         public void setAlertMethodCd(String alertMethodCd) {
732                 this.alertMethodCd = alertMethodCd;
733         }
734
735         /**
736          * @return the hrid
737          */
738         public String getHrid() {
739                 return hrid;
740         }
741
742         /**
743          * @param hrid
744          *            the hrid to set
745          */
746         public void setHrid(String hrid) {
747                 this.hrid = hrid;
748         }
749
750         /**
751          * @return the orgUserId
752          */
753         public String getOrgUserId() {
754                 return orgUserId;
755         }
756
757         /**
758          * @param orgUserId
759          *            the orgUserId to set
760          */
761         public void setOrgUserId(String orgUserId) {
762                 this.orgUserId = orgUserId;
763         }
764
765         /**
766          * @return the orgCode
767          */
768         public String getOrgCode() {
769                 return orgCode;
770         }
771
772         /**
773          * @param orgCode
774          *            the orgCode to set
775          */
776         public void setOrgCode(String orgCode) {
777                 this.orgCode = orgCode;
778         }
779
780         /**
781          * @return the address1
782          */
783         public String getAddress1() {
784                 return address1;
785         }
786
787         /**
788          * @param address1
789          *            the address1 to set
790          */
791         public void setAddress1(String address1) {
792                 this.address1 = address1;
793         }
794
795         /**
796          * @return the address2
797          */
798         public String getAddress2() {
799                 return address2;
800         }
801
802         /**
803          * @param address2
804          *            the address2 to set
805          */
806         public void setAddress2(String address2) {
807                 this.address2 = address2;
808         }
809
810         /**
811          * @return the city
812          */
813         public String getCity() {
814                 return city;
815         }
816
817         /**
818          * @param city
819          *            the city to set
820          */
821         public void setCity(String city) {
822                 this.city = city;
823         }
824
825         /**
826          * @return the state
827          */
828         public String getState() {
829                 return state;
830         }
831
832         /**
833          * @param state
834          *            the state to set
835          */
836         public void setState(String state) {
837                 this.state = state;
838         }
839
840         /**
841          * @return the zipCode
842          */
843         public String getZipCode() {
844                 return zipCode;
845         }
846
847         /**
848          * @param zipCode
849          *            the zipCode to set
850          */
851         public void setZipCode(String zipCode) {
852                 this.zipCode = zipCode;
853         }
854
855         /**
856          * @return the country
857          */
858         public String getCountry() {
859                 return country;
860         }
861
862         /**
863          * @param country
864          *            the country to set
865          */
866         public void setCountry(String country) {
867                 this.country = country;
868         }
869
870         /**
871          * @return the orgManagerUserId
872          */
873         public String getOrgManagerUserId() {
874                 return orgManagerUserId;
875         }
876
877         /**
878          * @param orgManagerUserId
879          *            the orgManagerUserId to set
880          */
881         public void setOrgManagerUserId(String orgManagerUserId) {
882                 this.orgManagerUserId = orgManagerUserId;
883         }
884
885         /**
886          * @return the locationClli
887          */
888         public String getLocationClli() {
889                 return locationClli;
890         }
891
892         /**
893          * @param locationClli
894          *            the locationClli to set
895          */
896         public void setLocationClli(String locationClli) {
897                 this.locationClli = locationClli;
898         }
899
900         /**
901          * @return the businessCountryCode
902          */
903         public String getBusinessCountryCode() {
904                 return businessCountryCode;
905         }
906
907         /**
908          * @param businessCountryCode
909          *            the businessCountryCode to set
910          */
911         public void setBusinessCountryCode(String businessCountryCode) {
912                 this.businessCountryCode = businessCountryCode;
913         }
914
915         /**
916          * @return the businessCountryName
917          */
918         public String getBusinessCountryName() {
919                 return businessCountryName;
920         }
921
922         /**
923          * @param businessCountryName
924          *            the businessCountryName to set
925          */
926         public void setBusinessCountryName(String businessCountryName) {
927                 this.businessCountryName = businessCountryName;
928         }
929
930         /**
931          * @return the businessUnit
932          */
933         public String getBusinessUnit() {
934                 return businessUnit;
935         }
936
937         /**
938          * @param businessUnit
939          *            the businessUnit to set
940          */
941         public void setBusinessUnit(String businessUnit) {
942                 this.businessUnit = businessUnit;
943         }
944
945         /**
946          * @return the businessUnitName
947          */
948         public String getBusinessUnitName() {
949                 return businessUnitName;
950         }
951
952         /**
953          * @param businessUnitName
954          *            the businessUnitName to set
955          */
956         public void setBusinessUnitName(String businessUnitName) {
957                 this.businessUnitName = businessUnitName;
958         }
959
960         /**
961          * @return the department
962          */
963         public String getDepartment() {
964                 return department;
965         }
966
967         /**
968          * @param department
969          *            the department to set
970          */
971         public void setDepartment(String department) {
972                 this.department = department;
973         }
974
975         /**
976          * @return the departmentName
977          */
978         public String getDepartmentName() {
979                 return departmentName;
980         }
981
982         /**
983          * @param departmentName
984          *            the departmentName to set
985          */
986         public void setDepartmentName(String departmentName) {
987                 this.departmentName = departmentName;
988         }
989
990         /**
991          * @return the companyCode
992          */
993         public String getCompanyCode() {
994                 return companyCode;
995         }
996
997         /**
998          * @param companyCode
999          *            the companyCode to set
1000          */
1001         public void setCompanyCode(String companyCode) {
1002                 this.companyCode = companyCode;
1003         }
1004
1005         /**
1006          * @return the company
1007          */
1008         public String getCompany() {
1009                 return company;
1010         }
1011
1012         /**
1013          * @param company
1014          *            the company to set
1015          */
1016         public void setCompany(String company) {
1017                 this.company = company;
1018         }
1019
1020         /**
1021          * @return the zipCodeSuffix
1022          */
1023         public String getZipCodeSuffix() {
1024                 return zipCodeSuffix;
1025         }
1026
1027         /**
1028          * @param zipCodeSuffix
1029          *            the zipCodeSuffix to set
1030          */
1031         public void setZipCodeSuffix(String zipCodeSuffix) {
1032                 this.zipCodeSuffix = zipCodeSuffix;
1033         }
1034
1035         /**
1036          * @return the jobTitle
1037          */
1038         public String getJobTitle() {
1039                 return jobTitle;
1040         }
1041
1042         /**
1043          * @param jobTitle
1044          *            the jobTitle to set
1045          */
1046         public void setJobTitle(String jobTitle) {
1047                 this.jobTitle = jobTitle;
1048         }
1049
1050         /**
1051          * @return the commandChain
1052          */
1053         public String getCommandChain() {
1054                 return commandChain;
1055         }
1056
1057         /**
1058          * @param commandChain
1059          *            the commandChain to set
1060          */
1061         public void setCommandChain(String commandChain) {
1062                 this.commandChain = commandChain;
1063         }
1064
1065         /**
1066          * @return the siloStatus
1067          */
1068         public String getSiloStatus() {
1069                 return siloStatus;
1070         }
1071
1072         /**
1073          * @param siloStatus
1074          *            the siloStatus to set
1075          */
1076         public void setSiloStatus(String siloStatus) {
1077                 this.siloStatus = siloStatus;
1078         }
1079
1080         /**
1081          * @return the costCenter
1082          */
1083         public String getCostCenter() {
1084                 return costCenter;
1085         }
1086
1087         /**
1088          * @param costCenter
1089          *            the costCenter to set
1090          */
1091         public void setCostCenter(String costCenter) {
1092                 this.costCenter = costCenter;
1093         }
1094
1095         /**
1096          * @return the financialLocCode
1097          */
1098         public String getFinancialLocCode() {
1099                 return financialLocCode;
1100         }
1101
1102         /**
1103          * @param financialLocCode
1104          *            the financialLocCode to set
1105          */
1106         public void setFinancialLocCode(String financialLocCode) {
1107                 this.financialLocCode = financialLocCode;
1108         }
1109
1110         /**
1111          * @return the loginId
1112          */
1113         public String getLoginId() {
1114                 return loginId;
1115         }
1116
1117         /**
1118          * @param loginId
1119          *            the loginId to set
1120          */
1121         public void setLoginId(String loginId) {
1122                 this.loginId = loginId;
1123         }
1124
1125         /**
1126          * @return the loginPwd
1127          */
1128         public String getLoginPwd() {
1129                 return loginPwd;
1130         }
1131
1132         /**
1133          * @param loginPwd
1134          *            the loginPwd to set
1135          */
1136         public void setLoginPwd(String loginPwd) {
1137                 this.loginPwd = loginPwd;
1138         }
1139
1140         /**
1141          * @return the lastLoginDate
1142          */
1143         public Date getLastLoginDate() {
1144                 return lastLoginDate;
1145         }
1146
1147         /**
1148          * @param lastLoginDate
1149          *            the lastLoginDate to set
1150          */
1151         public void setLastLoginDate(Date lastLoginDate) {
1152                 this.lastLoginDate = lastLoginDate;
1153         }
1154
1155         /**
1156          * @return the active
1157          */
1158         public boolean isActive() {
1159                 return active;
1160         }
1161
1162         /**
1163          * @param active
1164          *            the active to set
1165          */
1166         public void setActive(boolean active) {
1167                 this.active = active;
1168         }
1169
1170         /**
1171          * @return the internal
1172          */
1173         public boolean isInternal() {
1174                 return internal;
1175         }
1176
1177         /**
1178          * @param internal
1179          *            the internal to set
1180          */
1181         public void setInternal(boolean internal) {
1182                 this.internal = internal;
1183         }
1184
1185         /**
1186          * @return the selectedProfileId
1187          */
1188         public Long getSelectedProfileId() {
1189                 return selectedProfileId;
1190         }
1191
1192         /**
1193          * @param selectedProfileId
1194          *            the selectedProfileId to set
1195          */
1196         public void setSelectedProfileId(Long selectedProfileId) {
1197                 this.selectedProfileId = selectedProfileId;
1198         }
1199
1200         /**
1201          * @return the timeZoneId
1202          */
1203         public Long getTimeZoneId() {
1204                 return timeZoneId;
1205         }
1206
1207         /**
1208          * @param timeZoneId
1209          *            the timeZoneId to set
1210          */
1211         public void setTimeZoneId(Long timeZoneId) {
1212                 this.timeZoneId = timeZoneId;
1213         }
1214
1215         /**
1216          * @return the online
1217          */
1218         public boolean isOnline() {
1219                 return online;
1220         }
1221
1222         /**
1223          * @param online
1224          *            the online to set
1225          */
1226         public void setOnline(boolean online) {
1227                 this.online = online;
1228         }
1229
1230         /**
1231          * @return the chatId
1232          */
1233         public String getChatId() {
1234                 return chatId;
1235         }
1236
1237         /**
1238          * @param chatId
1239          *            the chatId to set
1240          */
1241         public void setChatId(String chatId) {
1242                 this.chatId = chatId;
1243         }
1244
1245         /**
1246          * @return the userApps
1247          */
1248         public Set<CentralUserApp> getUserApps() {
1249                 return userApps;
1250         }
1251
1252         /**
1253          * @param userApps
1254          *            the userApps to set
1255          */
1256         public void setUserApps(Set<CentralUserApp> userApps) {
1257                 this.userApps = userApps;
1258         }
1259
1260         /**
1261          * @return the pseudoRoles
1262          */
1263         public Set<CentralRole> getPseudoRoles() {
1264                 return pseudoRoles;
1265         }
1266
1267         /**
1268          * @param pseudoRoles
1269          *            the pseudoRoles to set
1270          */
1271         public void setPseudoRoles(Set<CentralRole> pseudoRoles) {
1272                 this.pseudoRoles = pseudoRoles;
1273         }
1274
1275 }