[PORTAL-16 PORTAL-18] Widget ms; staging
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / externalsystemapproval / model / ExternalSystemUser.java
1 /*-
2  * ================================================================================
3  * ECOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 package org.openecomp.portalapp.externalsystemapproval.model;
21
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 public class ExternalSystemUser {
27
28         private String loginId;
29         
30         private String applicationName;
31         
32         private String myloginrequestId;
33         
34         private List<ExternalSystemRoleApproval> roles;
35
36         public ExternalSystemUser() {
37                 roles = new ArrayList<ExternalSystemRoleApproval>();
38         }
39
40         public String getApplicationName() {
41                 return applicationName;
42         }
43
44         public void setApplicationName(String applicationName) {
45                 this.applicationName = applicationName;
46         }
47
48         public String getLoginId() {
49                 return loginId;
50         }
51
52         public void setLoginId(String loginId) {
53                 this.loginId = loginId;
54         }
55
56         public List<ExternalSystemRoleApproval> getRoles() {
57                 return roles;
58         }
59
60         public void setRoles(List<ExternalSystemRoleApproval> roles) {
61                 this.roles = roles;
62         }
63
64         public String getMyloginrequestId() {
65                 return myloginrequestId;
66         }
67
68         public void setMyloginrequestId(String myloginrequestId) {
69                 this.myloginrequestId = myloginrequestId;
70         }
71         
72         
73
74 }