Added CSIT for Macroflow with HEAT
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / multicloud-simulator / src / main / java / org / onap / so / multicloudsimulator / beans / InstanceResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright 2021 Huawei Technologies Co., Ltd.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ============LICENSE_END=========================================================
17  */
18 package org.onap.so.multicloudsimulator.beans;
19
20 import java.util.List;
21
22 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
23 import com.fasterxml.jackson.annotation.JsonInclude;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
26
27 @JsonInclude(JsonInclude.Include.NON_NULL)
28 @JsonPropertyOrder({ "id", "request", "namespace", "resources" })
29 @JsonIgnoreProperties(value = "true")
30 public class InstanceResponse extends Response {
31
32     @JsonProperty("id")
33     private String id;
34     @JsonProperty("request")
35     private MulticloudInstanceRequest request;
36     @JsonProperty("namespace")
37     private String namespace;
38     @JsonProperty("resources")
39     private List<Resource> resources = null;
40
41     public InstanceResponse(final String errorMsg) {
42         super(errorMsg);
43     }
44
45     public InstanceResponse() {
46         super("");
47     }
48
49     public String getId() {
50         return id;
51     }
52
53     public void setId(final String id) {
54         this.id = id;
55     }
56
57     public MulticloudInstanceRequest getRequest() {
58         return request;
59     }
60
61     public void setRequest(final MulticloudInstanceRequest request) {
62         this.request = request;
63     }
64
65     public String getNamespace() {
66         return namespace;
67     }
68
69     public void setNamespace(final String namespace) {
70         this.namespace = namespace;
71     }
72
73     public List<Resource> getResources() {
74         return resources;
75     }
76
77     public void setResources(final List<Resource> resources) {
78         this.resources = resources;
79     }
80
81 }