Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / sdno / beans / Input.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.onap.so.client.sdno.beans;
22
23 import java.io.Serializable;
24 import java.util.HashMap;
25 import java.util.Map;
26 import com.fasterxml.jackson.annotation.JsonAnyGetter;
27 import com.fasterxml.jackson.annotation.JsonAnySetter;
28 import com.fasterxml.jackson.annotation.JsonIgnore;
29 import com.fasterxml.jackson.annotation.JsonInclude;
30 import com.fasterxml.jackson.annotation.JsonProperty;
31 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
32
33 @JsonInclude(JsonInclude.Include.NON_NULL)
34 @JsonPropertyOrder({"request-healthdiagnostic", "request-hd-custom"})
35 public class Input implements Serializable {
36
37     @JsonProperty("request-healthdiagnostic")
38     private RequestHealthDiagnostic RequestHealthDiagnostic;
39     @JsonProperty("request-hd-custom")
40     private RequestHdCustom requestHdCustom;
41
42     @JsonIgnore
43     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
44     private final static long serialVersionUID = 7155546785389227528L;
45
46     @JsonProperty("request-healthdiagnostic")
47     public RequestHealthDiagnostic getRequestHealthDiagnostic() {
48         return RequestHealthDiagnostic;
49     }
50
51     @JsonProperty("request-healthdiagnostic")
52     public void setRequestHealthDiagnostic(RequestHealthDiagnostic RequestHealthDiagnostic) {
53         this.RequestHealthDiagnostic = RequestHealthDiagnostic;
54     }
55
56     @JsonProperty("request-hd-custom")
57     public RequestHdCustom getRequestHdCustom() {
58         return requestHdCustom;
59     }
60
61     @JsonProperty("request-hd-custom")
62     public void setRequestHdCustom(RequestHdCustom requestHdCustom) {
63         this.requestHdCustom = requestHdCustom;
64     }
65
66     public Input withRequestHealthDiagnostic(RequestHealthDiagnostic RequestHealthDiagnostic) {
67         this.RequestHealthDiagnostic = RequestHealthDiagnostic;
68         return this;
69     }
70
71     @JsonAnyGetter
72     public Map<String, Object> getAdditionalProperties() {
73         return this.additionalProperties;
74     }
75
76     @JsonAnySetter
77     public void setAdditionalProperty(String name, Object value) {
78         this.additionalProperties.put(name, value);
79     }
80
81     public void setAdditionalProperties(Map<String, Object> map) {
82         this.additionalProperties = map;
83     }
84
85     public Input withAdditionalProperty(String name, Object value) {
86         this.additionalProperties.put(name, value);
87         return this;
88     }
89
90 }