Fix for radio buttons
[sdc.git] / asdc-tests / src / main / java / org / openecomp / sdc / ci / tests / datatypes / ServiceRespJavaObject.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;
22
23 import java.util.ArrayList;
24
25 public class ServiceRespJavaObject {
26
27         String category;
28         String creatorUserId;
29         String creatorFullName;
30         String lastUpdaterUserId;
31         String lastUpdaterFullName;
32         String serviceName;
33         String version;
34         String creationDate;
35         String icon;
36         String name;
37         String description;
38         ArrayList<String> tags;
39         String uniqueId;
40         String lastUpdateDate;
41         String contactId;
42         String vendorName;
43         String vendorRelease;
44         String lifecycleState;
45         String highestVersion;
46         ArrayList<String> artifacts;
47         ArrayList<String> ResourceInstances;
48         ArrayList<String> ResourceInstancesRelations;
49
50         public ServiceRespJavaObject() {
51                 super();
52                 // TODO Auto-generated constructor stub
53         }
54
55         public ServiceRespJavaObject(String category, String creatorUserId, String creatorFullName,
56                         String lastUpdaterUserId, String lastUpdaterFullName, String serviceName, String version,
57                         String creationDate, String icon, String name, String description, ArrayList<String> tags, String uniqueId,
58                         String lastUpdateDate, String contactId, String vendorName, String vendorRelease, String lifecycleState,
59                         String highestVersion, ArrayList<String> artifacts, ArrayList<String> resourceInstances,
60                         ArrayList<String> resourceInstancesRelations) {
61                 super();
62                 this.category = category;
63                 this.creatorUserId = creatorUserId;
64                 this.creatorFullName = creatorFullName;
65                 this.lastUpdaterUserId = lastUpdaterUserId;
66                 this.lastUpdaterFullName = lastUpdaterFullName;
67                 this.serviceName = serviceName;
68                 this.version = version;
69                 this.creationDate = creationDate;
70                 this.icon = icon;
71                 this.name = name;
72                 this.description = description;
73                 this.tags = tags;
74                 this.uniqueId = uniqueId;
75                 this.lastUpdateDate = lastUpdateDate;
76                 this.contactId = contactId;
77                 this.vendorName = vendorName;
78                 this.vendorRelease = vendorRelease;
79                 this.lifecycleState = lifecycleState;
80                 this.highestVersion = highestVersion;
81                 this.artifacts = artifacts;
82                 ResourceInstances = resourceInstances;
83                 ResourceInstancesRelations = resourceInstancesRelations;
84         }
85
86         public String getCategory() {
87                 return category;
88         }
89
90         public void setCategory(String category) {
91                 this.category = category;
92         }
93
94         public String getCreatorUserId() {
95                 return creatorUserId;
96         }
97
98         public void setCreatorUserId(String creatorUserId) {
99                 this.creatorUserId = creatorUserId;
100         }
101
102         public String getCreatorFullName() {
103                 return creatorFullName;
104         }
105
106         public void setCreatorFullName(String creatorFullName) {
107                 this.creatorFullName = creatorFullName;
108         }
109
110         public String getLastUpdaterUserId() {
111                 return lastUpdaterUserId;
112         }
113
114         public void setLastUpdaterUserId(String lastUpdaterUserId) {
115                 this.lastUpdaterUserId = lastUpdaterUserId;
116         }
117
118         public String getLastUpdaterFullName() {
119                 return lastUpdaterFullName;
120         }
121
122         public void setLastUpdaterFullName(String lastUpdaterFullName) {
123                 this.lastUpdaterFullName = lastUpdaterFullName;
124         }
125
126         public String getVersion() {
127                 return version;
128         }
129
130         public void setVersion(String version) {
131                 this.version = version;
132         }
133
134         public String getCreationDate() {
135                 return creationDate;
136         }
137
138         public void setCreationDate(String creationDate) {
139                 this.creationDate = creationDate;
140         }
141
142         public String getIcon() {
143                 return icon;
144         }
145
146         public void setIcon(String icon) {
147                 this.icon = icon;
148         }
149
150         public String getName() {
151                 return name;
152         }
153
154         public void setName(String name) {
155                 this.name = name;
156         }
157
158         public String getDescription() {
159                 return description;
160         }
161
162         public void setDescription(String description) {
163                 this.description = description;
164         }
165
166         public ArrayList<String> getTags() {
167                 return tags;
168         }
169
170         public void setTags(ArrayList<String> tags) {
171                 this.tags = tags;
172         }
173
174         public String getUniqueId() {
175                 return uniqueId;
176         }
177
178         public void setUniqueId(String uniqueId) {
179                 this.uniqueId = uniqueId;
180         }
181
182         public String getLastUpdateDate() {
183                 return lastUpdateDate;
184         }
185
186         public void setLastUpdateDate(String lastUpdateDate) {
187                 this.lastUpdateDate = lastUpdateDate;
188         }
189
190         public String getContactId() {
191                 return contactId;
192         }
193
194         public void setContactId(String contactId) {
195                 this.contactId = contactId;
196         }
197
198         public String getVendorName() {
199                 return vendorName;
200         }
201
202         public void setVendorName(String vendorName) {
203                 this.vendorName = vendorName;
204         }
205
206         public String getVendorRelease() {
207                 return vendorRelease;
208         }
209
210         public void setVendorRelease(String vendorRelease) {
211                 this.vendorRelease = vendorRelease;
212         }
213
214         public String getLifecycleState() {
215                 return lifecycleState;
216         }
217
218         public void setLifecycleState(String lifecycleState) {
219                 this.lifecycleState = lifecycleState;
220         }
221
222         public String getHighestVersion() {
223                 return highestVersion;
224         }
225
226         public void setHighestVersion(String highest) {
227                 this.highestVersion = highest;
228         }
229
230         public ArrayList<String> getArtifacts() {
231                 return artifacts;
232         }
233
234         public void setArtifacts(ArrayList<String> artifacts) {
235                 this.artifacts = artifacts;
236         }
237
238         public ArrayList<String> getResourceInstances() {
239                 return ResourceInstances;
240         }
241
242         public void setResourceInstances(ArrayList<String> resourceInstances) {
243                 ResourceInstances = resourceInstances;
244         }
245
246         public ArrayList<String> getResourceInstancesRelations() {
247                 return ResourceInstancesRelations;
248         }
249
250         public void setResourceInstancesRelations(ArrayList<String> resourceInstancesRelations) {
251                 ResourceInstancesRelations = resourceInstancesRelations;
252         }
253
254         @Override
255         public String toString() {
256                 return "ServiceRespJavaObject [category=" + category + ", creatorUserId=" + creatorUserId + ", creatorFullName="
257                                 + creatorFullName + ", lastUpdaterUserId=" + lastUpdaterUserId + ", lastUpdaterFullName="
258                                 + lastUpdaterFullName + ", serviceName=" + serviceName + ", version=" + version + ", creationDate="
259                                 + creationDate + ", icon=" + icon + ", name=" + name + ", description=" + description + ", tags=" + tags
260                                 + ", uniqueId=" + uniqueId + ", lastUpdateDate=" + lastUpdateDate + ", contactId=" + contactId
261                                 + ", vendorName=" + vendorName + ", vendorRelease=" + vendorRelease + ", lifecycleState="
262                                 + lifecycleState + ", lifecycleState=" + lifecycleState + ", artifacts=" + artifacts
263                                 + ", ResourceInstances=" + ResourceInstances + ", ResourceInstancesRelations="
264                                 + ResourceInstancesRelations + "]";
265         }
266
267 }