bb15e58c88fce9db99c642835bf9dd6eaeb765b6
[so.git] / adapters / mso-adapter-utils / src / main / java / org / onap / so / openstack / utils / MulticloudCreateResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2018 Intel Corp. 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.onap.so.openstack.utils;
22
23 import java.io.Serializable;
24 import com.fasterxml.jackson.annotation.JsonCreator;
25 import com.fasterxml.jackson.annotation.JsonInclude;
26 import com.fasterxml.jackson.annotation.JsonProperty;
27 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
28 import org.apache.commons.lang.builder.ToStringBuilder;
29
30 @JsonInclude(JsonInclude.Include.NON_NULL)
31 @JsonPropertyOrder({"template_type", "workload_id", "template_response"})
32 public class MulticloudCreateResponse implements Serializable {
33     private final static long serialVersionUID = -5215028275577848311L;
34
35     @JsonProperty("template_type")
36     private String templateType;
37     @JsonProperty("workload_id")
38     private String workloadId;
39     @JsonProperty("template_response")
40     private MulticloudCreateStackResponse templateResponse;
41
42     @JsonCreator
43     public MulticloudCreateResponse(@JsonProperty("template_type") String templateType,
44             @JsonProperty("workload_id") String workloadId,
45             @JsonProperty("template_response") MulticloudCreateStackResponse templateResponse) {
46         this.templateType = templateType;
47         this.workloadId = workloadId;
48         this.templateResponse = templateResponse;
49     }
50
51     @JsonProperty("template_type")
52     public String getTemplateType() {
53         return templateType;
54     }
55
56     @JsonProperty("template_type")
57     public void setTemplateType(String templateType) {
58         this.templateType = templateType;
59     }
60
61     @JsonProperty("workload_id")
62     public String getWorkloadId() {
63         return workloadId;
64     }
65
66     @JsonProperty("workload_id")
67     public void setWorkloadId(String workloadId) {
68         this.workloadId = workloadId;
69     }
70
71     @JsonProperty("template_response")
72     public void setTemplateResponse(MulticloudCreateStackResponse templateResponse) {
73         this.templateResponse = templateResponse;
74     }
75
76     @JsonProperty("template_response")
77     public MulticloudCreateStackResponse getTemplateResponse() {
78         return templateResponse;
79     }
80
81     @Override
82     public String toString() {
83         return new ToStringBuilder(this).append("templateType", templateType).append("workloadId", workloadId)
84                 .append("templateResponse", templateResponse).toString();
85     }
86 }