[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / users / WebSealUserDetails.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.ci.tests.users;
22
23 public class WebSealUserDetails {
24         String firstName;
25         String lastName;
26         String userId;
27         String email;
28
29         public WebSealUserDetails() {
30                 super();
31         }
32
33         public WebSealUserDetails(String firstName, String lastName, String userId, String emailAddress) {
34                 super();
35                 this.firstName = firstName;
36                 this.lastName = lastName;
37                 this.userId = userId;
38                 this.email = emailAddress;
39
40         }
41
42         public String getFirstName() {
43                 return firstName;
44         }
45
46         public void setFirstName(String firstName) {
47                 this.firstName = firstName;
48         }
49
50         public String getLastName() {
51                 return lastName;
52         }
53
54         public void setLastName(String lastName) {
55                 this.lastName = lastName;
56         }
57
58         public String getUserId() {
59                 return userId;
60         }
61
62         public void setUserId(String userId) {
63                 this.userId = userId;
64         }
65
66         public String getEmailAddress() {
67                 return email;
68         }
69
70         public void setEmailAddress(String emailAddress) {
71                 this.email = emailAddress;
72         }
73
74 }