Domain model change
[portal.git] / portal-BE / src / main / java / org / onap / portal / domain / db / fn / FnUser.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ===================================================================
9  *
10  * Unless otherwise specified, all software contained herein is licensed
11  * under the Apache License, Version 2.0 (the "License");
12  * you may not use this software except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *             http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  *
23  * Unless otherwise specified, all documentation contained herein is licensed
24  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
25  * you may not use this documentation except in compliance with the License.
26  * You may obtain a copy of the License at
27  *
28  *             https://creativecommons.org/licenses/by/4.0/
29  *
30  * Unless required by applicable law or agreed to in writing, documentation
31  * distributed under the License is distributed on an "AS IS" BASIS,
32  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33  * See the License for the specific language governing permissions and
34  * limitations under the License.
35  *
36  * ============LICENSE_END============================================
37  *
38  *
39  */
40
41 package org.onap.portal.domain.db.fn;
42
43 import java.io.Serializable;
44 import java.time.LocalDateTime;
45 import java.util.Collection;
46 import java.util.HashSet;
47 import java.util.Iterator;
48 import java.util.Set;
49 import java.util.SortedSet;
50 import java.util.TreeSet;
51 import java.util.stream.Collectors;
52 import javax.persistence.CascadeType;
53 import javax.persistence.Column;
54 import javax.persistence.Entity;
55 import javax.persistence.FetchType;
56 import javax.persistence.Index;
57 import javax.persistence.JoinColumn;
58 import javax.persistence.ManyToMany;
59 import javax.persistence.ManyToOne;
60 import javax.persistence.NamedQueries;
61 import javax.persistence.NamedQuery;
62 import javax.persistence.OneToMany;
63 import javax.persistence.Table;
64 import javax.persistence.UniqueConstraint;
65 import javax.validation.constraints.Digits;
66 import javax.validation.constraints.Email;
67 import javax.validation.constraints.NotNull;
68 import javax.validation.constraints.PastOrPresent;
69 import javax.validation.constraints.Size;
70 import lombok.AllArgsConstructor;
71 import lombok.Builder;
72 import lombok.Getter;
73 import lombok.NoArgsConstructor;
74 import lombok.Setter;
75 import org.hibernate.annotations.DynamicUpdate;
76 import org.hibernate.validator.constraints.SafeHtml;
77 import org.onap.portal.domain.db.DomainVo;
78 import org.onap.portal.domain.db.cr.CrReportFileHistory;
79 import org.onap.portal.domain.db.ep.EpPersUserWidgetPlacement;
80 import org.onap.portal.domain.db.ep.EpPersUserWidgetSel;
81 import org.onap.portal.domain.db.ep.EpUserNotification;
82 import org.onap.portal.domain.db.ep.EpUserRolesRequest;
83 import org.onap.portal.domain.db.ep.EpWidgetCatalogParameter;
84 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
85 import org.springframework.security.core.GrantedAuthority;
86 import org.springframework.security.core.authority.SimpleGrantedAuthority;
87 import org.springframework.security.core.userdetails.UserDetails;
88
89 /*
90 CREATE TABLE `fn_user` (
91         `user_id` int(11) NOT NULL AUTO_INCREMENT,
92         `org_id` int(11) DEFAULT NULL,
93         `manager_id` int(11) DEFAULT NULL,
94         `first_name` varchar(50) DEFAULT NULL,
95         `middle_name` varchar(50) DEFAULT NULL,
96         `last_name` varchar(50) DEFAULT NULL,
97         `phone` varchar(25) DEFAULT NULL,
98         `fax` varchar(25) DEFAULT NULL,
99         `cellular` varchar(25) DEFAULT NULL,
100         `email` varchar(50) DEFAULT NULL,
101         `address_id` decimal(11,0) DEFAULT NULL,
102         `alert_method_cd` varchar(10) DEFAULT NULL,
103         `hrid` varchar(20) DEFAULT NULL,
104         `org_user_id` varchar(20) DEFAULT NULL,
105         `org_code` varchar(30) DEFAULT NULL,
106         `login_id` varchar(25) DEFAULT NULL,
107         `login_pwd` varchar(100) DEFAULT NULL,
108         `last_login_date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
109         `active_yn` varchar(1) NOT NULL DEFAULT 'y',
110         `created_id` int(11) DEFAULT NULL,
111         `created_date` timestamp NOT NULL DEFAULT current_timestamp(),
112         `modified_id` int(11) DEFAULT NULL,
113         `modified_date` timestamp NOT NULL DEFAULT current_timestamp(),
114         `is_internal_yn` char(1) NOT NULL DEFAULT 'n',
115         `address_line_1` varchar(100) DEFAULT NULL,
116         `address_line_2` varchar(100) DEFAULT NULL,
117         `city` varchar(50) DEFAULT NULL,
118         `state_cd` varchar(3) DEFAULT NULL,
119         `zip_code` varchar(11) DEFAULT NULL,
120         `country_cd` varchar(3) DEFAULT NULL,
121         `location_clli` varchar(8) DEFAULT NULL,
122         `org_manager_userid` varchar(20) DEFAULT NULL,
123         `company` varchar(100) DEFAULT NULL,
124         `department_name` varchar(100) DEFAULT NULL,
125         `job_title` varchar(100) DEFAULT NULL,
126         `timezone` int(11) DEFAULT NULL,
127         `department` varchar(25) DEFAULT NULL,
128         `business_unit` varchar(25) DEFAULT NULL,
129         `business_unit_name` varchar(100) DEFAULT NULL,
130         `cost_center` varchar(25) DEFAULT NULL,
131         `fin_loc_code` varchar(10) DEFAULT NULL,
132         `silo_status` varchar(10) DEFAULT NULL,
133         `language_id` int(2) NOT NULL DEFAULT 1,
134         PRIMARY KEY (`user_id`),
135         UNIQUE KEY `fn_user_hrid` (`hrid`) USING BTREE,
136         UNIQUE KEY `fn_user_login_id` (`login_id`) USING BTREE,
137         KEY `fn_user_address_id` (`address_id`) USING BTREE,
138         KEY `fn_user_alert_method_cd` (`alert_method_cd`) USING BTREE,
139         KEY `fn_user_org_id` (`org_id`) USING BTREE,
140         KEY `fk_fn_user_ref_197_fn_user` (`manager_id`),
141         KEY `fk_fn_user_ref_198_fn_user` (`created_id`),
142         KEY `fk_fn_user_ref_199_fn_user` (`modified_id`),
143         KEY `fk_timezone` (`timezone`),
144         CONSTRAINT `fk_fn_user_ref_110_fn_org` FOREIGN KEY (`org_id`) REFERENCES `fn_org` (`org_id`),
145         CONSTRAINT `fk_fn_user_ref_123_fn_lu_al` FOREIGN KEY (`alert_method_cd`) REFERENCES `fn_lu_alert_method` (`alert_method_cd`),
146         CONSTRAINT `fk_fn_user_ref_197_fn_user` FOREIGN KEY (`manager_id`) REFERENCES `fn_user` (`user_id`),
147         CONSTRAINT `fk_fn_user_ref_198_fn_user` FOREIGN KEY (`created_id`) REFERENCES `fn_user` (`user_id`),
148         CONSTRAINT `fk_fn_user_ref_199_fn_user` FOREIGN KEY (`modified_id`) REFERENCES `fn_user` (`user_id`),
149         CONSTRAINT `fk_timezone` FOREIGN KEY (`timezone`) REFERENCES `fn_lu_timezone` (`timezone_id`)
150         )
151 */
152
153 @NamedQueries({
154     @NamedQuery(
155         name = "FnUser.getUserWithOrgUserId",
156         query = "FROM FnUser WHERE orgUserId = :orgId"),
157     @NamedQuery(
158         name = "FnUser.findByLoginId",
159         query = "FROM FnUser WHERE loginId = :loginId"),
160     @NamedQuery(
161         name = "FnUser.getActiveUsers",
162         query = "FROM FnUser WHERE activeYn = 'Y'"),
163     @NamedQuery(
164         name = "FnUser.getUsersByOrgIds",
165         query = "FROM FnUser WHERE orgUserId IN :orgIds"
166     )
167 })
168
169 @Table(name = "fn_user", indexes = {
170     @Index(name = "fn_user_address_id", columnList = "address_id"),
171     @Index(name = "fn_user_alert_method_cd", columnList = "alert_method_cd"),
172     @Index(name = "fn_user_org_id", columnList = "org_id"),
173 //    @Index(name = "fk_fn_user_ref_197_fn_user", columnList = "manager_id"),
174     @Index(name = "fk_fn_user_ref_198_fn_user", columnList = "created_id"),
175     @Index(name = "fk_fn_user_ref_199_fn_user", columnList = "modified_id"),
176     @Index(name = "fk_timezone", columnList = "timezone")
177 },
178     uniqueConstraints = {
179         @UniqueConstraint(name = "fn_user_hrid", columnNames = "hrid"),
180         @UniqueConstraint(name = "fn_user_login_id", columnNames = "login_id")
181
182     })
183
184 @Getter
185 @Setter
186 @Entity
187 @NoArgsConstructor
188 @AllArgsConstructor
189 @DynamicUpdate
190 public class FnUser extends DomainVo implements UserDetails, Serializable {
191
192   private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FnUser.class);
193
194 /*  @ManyToOne(cascade = CascadeType.MERGE, fetch = FetchType.LAZY)
195   @JoinColumn(name = "manager_id")
196   private FnUser managerId;*/
197   @ManyToOne(cascade = CascadeType.MERGE, fetch = FetchType.LAZY)
198   @JoinColumn(name = "org_id")
199   private FnOrg orgId;
200   @Column(name = "first_name", length = 50)
201   @Size(max = 50)
202   @SafeHtml
203   private String firstName;
204   @Column(name = "middle_name", length = 50)
205   @Size(max = 50)
206   @SafeHtml
207   private String middleName;
208   @Column(name = "last_name", length = 50)
209   @Size(max = 50)
210   @SafeHtml
211   private String lastName;
212   @Column(name = "phone", length = 25)
213   @Size(max = 25)
214   @SafeHtml
215   private String phone;
216   @Column(name = "fax", length = 25)
217   @Size(max = 25)
218   @SafeHtml
219   private String fax;
220   @Column(name = "cellular", length = 25)
221   @Size(max = 25)
222   @SafeHtml
223   private String cellular;
224   @Column(name = "email", length = 50)
225   @Size(max = 50)
226   @Email
227   @SafeHtml
228   private String email;
229   @Column(name = "address_id")
230   @Digits(integer = 11, fraction = 0)
231   private Long addressId;
232   @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.MERGE)
233   @JoinColumn(name = "alert_method_cd")
234   private FnLuAlertMethod alertMethodCd;
235   @Column(name = "hrid", length = 20)
236   @Size(max = 20)
237   @SafeHtml
238   private String hrid;
239   @Column(name = "org_user_id", length = 20)
240   @Size(max = 20)
241   @SafeHtml
242   private String orgUserId;
243   @Column(name = "org_code", length = 30)
244   @Size(max = 30)
245   @SafeHtml
246   private String org_code;
247   @Column(name = "login_id", length = 25)
248   @Size(max = 25)
249   @SafeHtml
250   private String loginId;
251   @Column(name = "login_pwd", length = 100)
252   @Size(max = 100)
253   @SafeHtml
254   private String loginPwd;
255   @Column(name = "last_login_date", nullable = false, columnDefinition = "datetime DEFAULT current_timestamp() ON UPDATE current_timestamp()")
256   @PastOrPresent
257   protected LocalDateTime lastLoginDate;
258   @Column(name = "active_yn", nullable = false)
259   private Boolean activeYn;
260   @Column(name = "created_date", columnDefinition = "datetime DEFAULT current_timestamp()", nullable = false)
261   @PastOrPresent
262   protected LocalDateTime createdDate;
263   @Column(name = "modified_date", nullable = false, columnDefinition = "datetime default now()")
264   @PastOrPresent
265   protected LocalDateTime modifiedDate;
266   @Column(name = "is_internal_yn", nullable = false, columnDefinition = "boolean DEFAULT false")
267   private Boolean isInternalYn = false;
268   @Column(name = "is_system_user", nullable = false, columnDefinition = "boolean DEFAULT false")
269   private Boolean isSystemUser = false;
270   @Column(name = "address_line_1", length = 100)
271   @Size(max = 100)
272   @SafeHtml
273   private String addressLine1;
274   @Column(name = "address_line_2", length = 100)
275   @Size(max = 100)
276   @SafeHtml
277   private String addressLine2;
278   @Column(name = "city", length = 50)
279   @Size(max = 50)
280   @SafeHtml
281   private String city;
282   @Column(name = "state_cd", length = 3)
283   @Size(max = 3)
284   @SafeHtml
285   private String stateCd;
286   @Column(name = "zip_code", length = 11)
287   @Size(max = 11)
288   @SafeHtml
289   private String zipCode;
290   @Column(name = "country_cd", length = 3)
291   @Size(max = 3)
292   @SafeHtml
293   private String countryCd;
294   @Column(name = "location_clli", length = 8)
295   @Size(max = 8)
296   @SafeHtml
297   private String locationClli;
298   @Column(name = "org_manager_userid", length = 20)
299   @Size(max = 20)
300   @SafeHtml
301   private String orgManagerUserId;
302   @Column(name = "company", length = 100)
303   @Size(max = 100)
304   @SafeHtml
305   private String company;
306   @Column(name = "department_name", length = 200)
307   @Size(max = 200)
308   @SafeHtml
309   private String departmentName;
310   @Column(name = "job_title", length = 100)
311   @Size(max = 100)
312   @SafeHtml
313   private String jobTitle;
314   @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.MERGE)
315   @JoinColumn(name = "timezone")
316   private FnLuTimezone timezone;
317   @Column(name = "department", length = 25)
318   @Size(max = 25)
319   @SafeHtml
320   private String department;
321   @Column(name = "business_unit", length = 25)
322   @Size(max = 25)
323   @SafeHtml
324   private String businessUnit;
325   @Column(name = "business_unit_name", length = 100)
326   @Size(max = 100)
327   @SafeHtml
328   private String businessUnitName;
329   @Column(name = "cost_center", length = 25)
330   @Size(max = 25)
331   @SafeHtml
332   private String cost_center;
333   @Column(name = "fin_loc_code", length = 10)
334   @Size(max = 10)
335   @SafeHtml
336   private String finLocCode;
337   @Column(name = "silo_status", length = 10)
338   @Size(max = 10)
339   @SafeHtml
340   private String siloStatus;
341   @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.MERGE)
342   @JoinColumn(name = "language_id", nullable = false)
343   @NotNull(message = "languageId must not be null")
344   private FnLanguage languageId;
345   @Column(name = "is_guest", nullable = false, columnDefinition = "boolean DEFAULT false")
346   @NotNull(message = "guest must not be null")
347   private Boolean guest = false;
348   @ManyToMany(cascade = CascadeType.MERGE, fetch = FetchType.LAZY, mappedBy = "fnUserList")
349   private Set<CrReportFileHistory> crReportFileHistorie;
350   @ManyToMany(cascade = CascadeType.MERGE, fetch = FetchType.EAGER, mappedBy = "fnUsers")
351   private Set<FnRole> fnRoles;
352   @ManyToMany(cascade = CascadeType.MERGE, fetch = FetchType.LAZY)
353   private Set<FnMenuFunctional> fnRoleList;
354   @OneToMany(
355       targetEntity = FnAuditLog.class,
356       mappedBy = "userId",
357       cascade = CascadeType.MERGE,
358       fetch = FetchType.LAZY
359   )
360   private Set<FnAuditLog> fnAuditLogs;
361   @OneToMany(
362       targetEntity = EpUserRolesRequest.class,
363       mappedBy = "userId",
364       cascade = CascadeType.MERGE,
365       fetch = FetchType.LAZY
366   )
367   private Set<EpUserRolesRequest> epUserRolesRequests;
368   @OneToMany(
369       targetEntity = FnPersUserAppSel.class,
370       mappedBy = "userId",
371       cascade = CascadeType.MERGE,
372       fetch = FetchType.LAZY
373   )
374   private Set<FnPersUserAppSel> persUserAppSels;
375   @OneToMany(
376       targetEntity = EpWidgetCatalogParameter.class,
377       mappedBy = "userId",
378       cascade = CascadeType.MERGE,
379       fetch = FetchType.LAZY
380   )
381   private Set<EpWidgetCatalogParameter> epWidgetCatalogParameters;
382   @OneToMany(
383       targetEntity = EpPersUserWidgetPlacement.class,
384       mappedBy = "userId",
385       cascade = CascadeType.MERGE,
386       fetch = FetchType.LAZY
387   )
388   private Set<EpPersUserWidgetPlacement> epPersUserWidgetPlacements;
389   @OneToMany(
390       targetEntity = EpPersUserWidgetSel.class,
391       mappedBy = "userId",
392       cascade = CascadeType.MERGE,
393       fetch = FetchType.LAZY
394   )
395   private Set<EpPersUserWidgetSel> epPersUserWidgetSels;
396   @OneToMany(
397       targetEntity = FnUserRole.class,
398       mappedBy = "userId",
399       cascade = CascadeType.MERGE,
400       fetch = FetchType.LAZY
401   )
402   private Set<FnUserRole> userApps;
403   @OneToMany(
404       targetEntity = EpUserNotification.class,
405       mappedBy = "userId",
406       cascade = CascadeType.MERGE,
407       fetch = FetchType.LAZY
408   )
409   private Set<EpUserNotification> epUserNotifications;
410 /*  @OneToMany(
411       targetEntity = FnUser.class,
412       mappedBy = "managerId",
413       cascade = CascadeType.MERGE,
414       fetch = FetchType.LAZY
415   )
416   private Set<FnUser> fnUsersManagerId;*/
417
418   @Override
419   public Collection<? extends GrantedAuthority> getAuthorities() {
420     return fnRoles
421         .stream()
422         .map(fnRole -> new SimpleGrantedAuthority("ROLE_" + fnRole.getRoleName()))
423         .collect(Collectors.toList());
424   }
425
426   @Override
427   public String getPassword() {
428     return this.getLoginPwd();
429   }
430
431   @Override
432   public String getUsername() {
433     return this.getLoginId();
434   }
435
436   @Override
437   public boolean isAccountNonExpired() {
438     return true;
439   }
440
441   @Override
442   public boolean isAccountNonLocked() {
443     return true;
444   }
445
446   @Override
447   public boolean isCredentialsNonExpired() {
448     return true;
449   }
450
451   @Override
452   public boolean isEnabled() {
453     return true;
454   }
455
456   public String getFullName() {
457     return this.firstName + " " + this.lastName;
458   }
459
460   public SortedSet<FnRole> getAppEPRoles(FnApp app) {
461
462     logger.debug(EELFLoggerDelegate.debugLogger, "In EPUser.getAppEPRoles() - app = {}", app.getAppName());
463
464     SortedSet<FnRole> roles = new TreeSet<>();
465     Set<FnUserRole> userAppRoles = getUserApps();
466
467     logger.debug(EELFLoggerDelegate.debugLogger, "In EPUser.getAppEPRoles() - userApps = {} ", userAppRoles.size());
468
469     Iterator<FnUserRole> userAppRolesIterator = userAppRoles.iterator();
470
471     FnUserRole userAppRole;
472     // getting default app
473     while (userAppRolesIterator.hasNext()) {
474       FnUserRole tempUserApp = userAppRolesIterator.next();
475       if (tempUserApp.getFnAppId().getId().equals(app.getId())) {
476
477         logger.debug(EELFLoggerDelegate.debugLogger,
478             "In EPUser.getAppEPRoles() - for user {}, found application {}", this.getFullName(),
479             app.getAppName());
480
481         userAppRole = tempUserApp;
482
483         FnRole role = userAppRole.getRoleId();
484         if (role.getActiveYn()) {
485           logger.debug(EELFLoggerDelegate.debugLogger,
486               "In EPUser.getAppEPRoles() - Role {} is active - adding for user {} and app {}",
487               role.getRoleName(), this.getFullName(), app.getAppName());
488           roles.add(role);
489         } else {
490           logger.debug(EELFLoggerDelegate.debugLogger,
491               "In EPUser.getAppEPRoles() - Role {} is NOT active - NOT adding for user {} and app {}",
492               role.getRoleName(), this.getFullName(), app.getAppName());
493         }
494       }
495     }
496     logger.debug(EELFLoggerDelegate.debugLogger, "In EPUser.getAppEPRoles() - roles = {}", roles.size());
497
498     return roles;
499   }
500
501   public void setRoles(Set<FnRole> roles) {
502     FnApp app = new FnApp();
503     app.setId(1L);
504     app.setAppName("Default");
505     this.addAppRoles(app, roles);
506   }
507
508   private void addAppRoles(FnApp app, Set<FnRole> roles) {
509     if (roles != null) {
510       Set<FnUserRole> newUserApps = new HashSet<>();
511       for (FnRole role : roles) {
512         FnUserRole userApp = new FnUserRole();
513         userApp.setUserId(this);
514         userApp.setFnAppId(app);
515         userApp.setRoleId(role);
516         newUserApps.add(userApp);
517       }
518
519       this.setUserApps(newUserApps);
520     } else {
521       this.userApps.clear();
522     }
523   }
524
525   @Builder
526
527   public FnUser(@Digits(integer = 11, fraction = 0) Long id, LocalDateTime created, LocalDateTime modified,
528       Long rowNum, Serializable auditUserId, DomainVo createdId, DomainVo modifiedId,
529       Set<DomainVo> fnUsersCreatedId, Set<DomainVo> fnUsersModifiedId, FnOrg orgId,
530       @Size(max = 50) @SafeHtml String firstName,
531       @Size(max = 50) @SafeHtml String middleName,
532       @Size(max = 50) @SafeHtml String lastName,
533       @Size(max = 25) @SafeHtml String phone,
534       @Size(max = 25) @SafeHtml String fax,
535       @Size(max = 25) @SafeHtml String cellular,
536       @Size(max = 50) @Email @SafeHtml String email,
537       @Digits(integer = 11, fraction = 0) Long addressId, FnLuAlertMethod alertMethodCd,
538       @Size(max = 20) @SafeHtml String hrid,
539       @Size(max = 20) @SafeHtml String orgUserId,
540       @Size(max = 30) @SafeHtml String org_code,
541       @Size(max = 25) @SafeHtml String loginId,
542       @Size(max = 100) @SafeHtml String loginPwd,
543       @PastOrPresent LocalDateTime lastLoginDate, Boolean activeYn,
544       @PastOrPresent LocalDateTime createdDate,
545       @PastOrPresent LocalDateTime modifiedDate, Boolean isInternalYn, Boolean isSystemUser,
546       @Size(max = 100) @SafeHtml String addressLine1,
547       @Size(max = 100) @SafeHtml String addressLine2,
548       @Size(max = 50) @SafeHtml String city,
549       @Size(max = 3) @SafeHtml String stateCd,
550       @Size(max = 11) @SafeHtml String zipCode,
551       @Size(max = 3) @SafeHtml String countryCd,
552       @Size(max = 8) @SafeHtml String locationClli,
553       @Size(max = 20) @SafeHtml String orgManagerUserId,
554       @Size(max = 100) @SafeHtml String company,
555       @Size(max = 200) @SafeHtml String departmentName,
556       @Size(max = 100) @SafeHtml String jobTitle, FnLuTimezone timezone,
557       @Size(max = 25) @SafeHtml String department,
558       @Size(max = 25) @SafeHtml String businessUnit,
559       @Size(max = 100) @SafeHtml String businessUnitName,
560       @Size(max = 25) @SafeHtml String cost_center,
561       @Size(max = 10) @SafeHtml String finLocCode,
562       @Size(max = 10) @SafeHtml String siloStatus,
563       @NotNull(message = "languageId must not be null") FnLanguage languageId,
564       @NotNull(message = "guest must not be null") Boolean guest,
565       Set<CrReportFileHistory> crReportFileHistorie, Set<FnRole> fnRoles,
566       Set<FnMenuFunctional> fnRoleList, Set<FnAuditLog> fnAuditLogs,
567       Set<EpUserRolesRequest> epUserRolesRequests,
568       Set<FnPersUserAppSel> persUserAppSels,
569       Set<EpWidgetCatalogParameter> epWidgetCatalogParameters,
570       Set<EpPersUserWidgetPlacement> epPersUserWidgetPlacements,
571       Set<EpPersUserWidgetSel> epPersUserWidgetSels, Set<FnUserRole> userApps,
572       Set<EpUserNotification> epUserNotifications) {
573     super(id, created, modified, rowNum, auditUserId, createdId, modifiedId, fnUsersCreatedId, fnUsersModifiedId);
574     this.orgId = orgId;
575     this.firstName = firstName;
576     this.middleName = middleName;
577     this.lastName = lastName;
578     this.phone = phone;
579     this.fax = fax;
580     this.cellular = cellular;
581     this.email = email;
582     this.addressId = addressId;
583     this.alertMethodCd = alertMethodCd;
584     this.hrid = hrid;
585     this.orgUserId = orgUserId;
586     this.org_code = org_code;
587     this.loginId = loginId;
588     this.loginPwd = loginPwd;
589     this.lastLoginDate = lastLoginDate;
590     this.activeYn = activeYn;
591     this.createdDate = createdDate;
592     this.modifiedDate = modifiedDate;
593     this.isInternalYn = isInternalYn;
594     this.isSystemUser = isSystemUser;
595     this.addressLine1 = addressLine1;
596     this.addressLine2 = addressLine2;
597     this.city = city;
598     this.stateCd = stateCd;
599     this.zipCode = zipCode;
600     this.countryCd = countryCd;
601     this.locationClli = locationClli;
602     this.orgManagerUserId = orgManagerUserId;
603     this.company = company;
604     this.departmentName = departmentName;
605     this.jobTitle = jobTitle;
606     this.timezone = timezone;
607     this.department = department;
608     this.businessUnit = businessUnit;
609     this.businessUnitName = businessUnitName;
610     this.cost_center = cost_center;
611     this.finLocCode = finLocCode;
612     this.siloStatus = siloStatus;
613     this.languageId = languageId;
614     this.guest = guest;
615     this.crReportFileHistorie = crReportFileHistorie;
616     this.fnRoles = fnRoles;
617     this.fnRoleList = fnRoleList;
618     this.fnAuditLogs = fnAuditLogs;
619     this.epUserRolesRequests = epUserRolesRequests;
620     this.persUserAppSels = persUserAppSels;
621     this.epWidgetCatalogParameters = epWidgetCatalogParameters;
622     this.epPersUserWidgetPlacements = epPersUserWidgetPlacements;
623     this.epPersUserWidgetSels = epPersUserWidgetSels;
624     this.userApps = userApps;
625     this.epUserNotifications = epUserNotifications;
626   }
627 }