Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapter-utils / src / main / java / org / onap / so / openstack / utils / MulticloudQueryResponse.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", "workload_status"})
32 public class MulticloudQueryResponse 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("workload_status")
40     private String workloadStatus;
41
42     @JsonCreator
43     public MulticloudQueryResponse(@JsonProperty("template_type") String templateType,
44             @JsonProperty("workload_id") String workloadId, @JsonProperty("workload_status") String workloadStatus) {
45         this.templateType = templateType;
46         this.workloadId = workloadId;
47         this.workloadStatus = workloadStatus;
48     }
49
50     @JsonProperty("template_type")
51     public String getTemplateType() {
52         return templateType;
53     }
54
55     @JsonProperty("template_type")
56     public void setTemplateType(String templateType) {
57         this.templateType = templateType;
58     }
59
60     @JsonProperty("workload_id")
61     public String getWorkloadId() {
62         return workloadId;
63     }
64
65     @JsonProperty("workload_id")
66     public void setWorkloadId(String workloadId) {
67         this.workloadId = workloadId;
68     }
69
70     @JsonProperty("workload_status")
71     public String getWorkloadStatus() {
72         return workloadStatus;
73     }
74
75     @JsonProperty("workload_status")
76     public void setWorkloadStatus(String workloadStatus) {
77         this.workloadStatus = workloadStatus;
78     }
79
80     @Override
81     public String toString() {
82         return new ToStringBuilder(this).append("templateType", templateType).append("workloadId", workloadId)
83                 .append("workloadStatus", workloadStatus).toString();
84     }
85 }