[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / enums / UserRoleEnum.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.datatypes.enums;
22
23 public enum UserRoleEnum {
24
25         ADMIN("jh0003", "Jimmy", "Hendrix"), DESIGNER("cs0008", "Carlos", "Santana"), DESIGNER2("me0009", "Melissa","Etheridge"), TESTER("jm0007", "Joni", "Mitchell"), ADMIN4("km2000", "Kot", "May"), 
26         GOVERNOR("gv0001","David", "Shadmi"), OPS("op0001", "Steve", "Regev"), PRODUCT_STRATEGIST1("ps0001", "Eden","Rozin"), PRODUCT_STRATEGIST2("ps0002", "Ella", "Kvetny"), PRODUCT_STRATEGIST3("ps0003", "Geva", "Alon"), 
27         PRODUCT_MANAGER1("pm0001", "Teddy", "Isashar"), PRODUCT_MANAGER2("pm0002", "Sarah", "Bettens");
28         private String userId;
29         private String firstName;
30         private String lastName;
31         private String userName;
32
33         private UserRoleEnum(String userId, String userName) {
34                 this.userId = userId;
35                 this.userName = userName;
36         }
37
38         private UserRoleEnum(String userId, String firstName, String lastName) {
39                 this.userId = userId;
40                 this.firstName = firstName;
41                 this.lastName = lastName;
42                 this.userName = firstName + " " + lastName;
43         }
44
45         public String getUserId() {
46                 return userId;
47         }
48
49         public void setUserId(String userId) {
50                 this.userId = userId;
51         }
52
53         public String getUserName() {
54                 return userName;
55         }
56
57         public void setUserName(String userName) {
58                 this.userName = userName;
59         }
60
61         public String getFirstName() {
62                 return firstName;
63         }
64
65         public void setFirstName(String firstName) {
66                 this.firstName = firstName;
67         }
68
69         public String getLastName() {
70                 return lastName;
71         }
72
73         public void setLastName(String lastName) {
74                 this.lastName = lastName;
75         }
76
77 }