Healing issue
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / webSealAccess / NeoJavaObject.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.webSealAccess;
22
23 public class NeoJavaObject {
24
25         String userId;
26         String firstName;
27         String lastName;
28         String email;
29         String role;
30         String label;
31         String elementType;
32
33         public NeoJavaObject(String userId, String firstName, String lastName, String email, String role, String label,
34                         String elementType) {
35                 super();
36                 this.userId = userId;
37                 this.firstName = firstName;
38                 this.lastName = lastName;
39                 this.email = email;
40                 this.role = role;
41                 this.label = label;
42                 this.elementType = elementType;
43         }
44
45         public NeoJavaObject() {
46                 super();
47         }
48
49         public String getUserId() {
50                 return userId;
51         }
52
53         public void setUserId(String userId) {
54                 this.userId = userId;
55         }
56
57         public String getFirstName() {
58                 return firstName;
59         }
60
61         public void setFirstName(String firstName) {
62                 this.firstName = firstName;
63         }
64
65         public String getLastName() {
66                 return lastName;
67         }
68
69         public void setLastName(String lastName) {
70                 this.lastName = lastName;
71         }
72
73         public String getEmail() {
74                 return email;
75         }
76
77         public void setEmail(String email) {
78                 this.email = email;
79         }
80
81         public String getRole() {
82                 return role;
83         }
84
85         public void setRole(String role) {
86                 this.role = role;
87         }
88
89         public String getLabel() {
90                 return label;
91         }
92
93         public void setLabel(String label) {
94                 this.label = label;
95         }
96
97         public String getElementType() {
98                 return elementType;
99         }
100
101         public void setElementType(String elementType) {
102                 this.elementType = elementType;
103         }
104
105         @Override
106         public String toString() {
107                 return "QueryUserNeo4jInfo [userId=" + userId + ", firstName=" + firstName + ", lastName=" + lastName
108                                 + ", email=" + email + ", role=" + role + ", label=" + label + ", elementType=" + elementType + "]";
109         }
110
111 }