summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/CentralUser.java
blob: f81748253f62237081ae3ce787a4846017bf23fe (plain)
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
package org.openecomp.portalapp.portal.transport;

import java.util.Date;
import java.util.Set;

public class CentralUser {


	public Long id;
	public Date created;
	public Date modified;
	public Long createdId;
	public Long modifiedId;
	public Long rowNum;
	
	public Long   orgId;
    public Long   managerId;
    public String firstName;
    public String middleInitial;
    public String lastName;
    public String phone;
    public String fax;
    public String cellular;
    public String email;
    public Long   addressId;
    public String alertMethodCd;
    public String hrid;
    public String orgUserId;
    public String orgCode;
    public String address1;
    public String address2;
    public String city;
    public String state;
    public String zipCode;
    public String country;
    public String orgManagerUserId;
    public String locationClli;
    public String businessCountryCode;
    public String businessCountryName;
    public String businessUnit;
    public String businessUnitName;
    public String department;
    public String departmentName;
    public String companyCode;
    public String company;
    public String zipCodeSuffix;
    public String jobTitle;
    public String commandChain;
    public String siloStatus;
    public String costCenter;
    public String financialLocCode;

    public String loginId;
    public String loginPwd;
    public Date   lastLoginDate;
    public boolean active;
    public boolean internal;
    public Long    selectedProfileId;
    public Long timeZoneId;
    public boolean online;
    public String chatId;
    
    public Set<CentralUserApp> userApps = null;
	public Set<CentralRole> pseudoRoles = null;
	
	public CentralUser(){
		
	}
	
	public CentralUser(Long id, Date created, Date modified, Long createdId, Long modifiedId, Long rowNum, Long orgId,
			Long managerId, String firstName, String middleInitial, String lastName, String phone, String fax,
			String cellular, String email, Long addressId, String alertMethodCd, String hrid, String orgUserId,
			String orgCode, String address1, String address2, String city, String state, String zipCode, String country,
			String orgManagerUserId, String locationClli, String businessCountryCode, String businessCountryName,
			String businessUnit, String businessUnitName, String department, String departmentName, String companyCode,
			String company, String zipCodeSuffix, String jobTitle, String commandChain, String siloStatus,
			String costCenter, String financialLocCode, String loginId, String loginPwd, Date lastLoginDate,
			boolean active, boolean internal, Long selectedProfileId, Long timeZoneId, boolean online, String chatId,
			Set<CentralUserApp> userApps, Set<CentralRole> pseudoRoles) {
		super();
		this.id = id;
		this.created = created;
		this.modified = modified;
		this.createdId = createdId;
		this.modifiedId = modifiedId;
		this.rowNum = rowNum;
		this.orgId = orgId;
		this.managerId = managerId;
		this.firstName = firstName;
		this.middleInitial = middleInitial;
		this.lastName = lastName;
		this.phone = phone;
		this.fax = fax;
		this.cellular = cellular;
		this.email = email;
		this.addressId = addressId;
		this.alertMethodCd = alertMethodCd;
		this.hrid = hrid;
		this.orgUserId = orgUserId;
		this.orgCode = orgCode;
		this.address1 = address1;
		this.address2 = address2;
		this.city = city;
		this.state = state;
		this.zipCode = zipCode;
		this.country = country;
		this.orgManagerUserId = orgManagerUserId;
		this.locationClli = locationClli;
		this.businessCountryCode = businessCountryCode;
		this.businessCountryName = businessCountryName;
		this.businessUnit = businessUnit;
		this.businessUnitName = businessUnitName;
		this.department = department;
		this.departmentName = departmentName;
		this.companyCode = companyCode;
		this.company = company;
		this.zipCodeSuffix = zipCodeSuffix;
		this.jobTitle = jobTitle;
		this.commandChain = commandChain;
		this.siloStatus = siloStatus;
		this.costCenter = costCenter;
		this.financialLocCode = financialLocCode;
		this.loginId = loginId;
		this.loginPwd = loginPwd;
		this.lastLoginDate = lastLoginDate;
		this.active = active;
		this.internal = internal;
		this.selectedProfileId = selectedProfileId;
		this.timeZoneId = timeZoneId;
		this.online = online;
		this.chatId = chatId;
		this.userApps = userApps;
		this.pseudoRoles = pseudoRoles;
	}
	
	

	
}