Changes for Checkstyle 8.32
[policy/models.git] / models-interactions / model-impl / sdnc / src / main / java / org / onap / policy / sdnc / SdncHealRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2018-2019 Huawei. All rights reserved.
4  * Modifications Copyright (C) 2019 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END=========================================================
18  */
19
20 package org.onap.policy.sdnc;
21
22 import com.google.gson.annotations.SerializedName;
23 import java.io.Serializable;
24 import lombok.Getter;
25 import lombok.Setter;
26
27 @Getter
28 @Setter
29 public class SdncHealRequest implements Serializable {
30
31     private static final long serialVersionUID = -7341931593089709247L;
32
33     @SerializedName("sdnc-request-header")
34     private SdncHealRequestHeaderInfo requestHeaderInfo;
35
36     @SerializedName("request-information")
37     private SdncHealRequestInfo requestInfo;
38
39     @SerializedName("service-information")
40     private SdncHealServiceInfo serviceInfo;
41
42     @SerializedName("network-information")
43     private SdncHealNetworkInfo networkInfo;
44
45     @SerializedName("vnf-information")
46     private SdncHealVnfInfo vnfInfo;
47
48     @SerializedName("vf-module-information")
49     private SdncHealVfModuleInfo vfModuleInfo;
50
51     @SerializedName("vf-module-request-input")
52     private SdncHealVfModuleRequestInput vfModuleRequestInput;
53
54     public SdncHealRequest() {
55         // Default constructor for SdncHealRequest
56     }
57
58     public SdncHealRequestHeaderInfo getRequestHeaderInfo() {
59         return requestHeaderInfo;
60     }
61
62     public void setRequestHeaderInfo(SdncHealRequestHeaderInfo requestHeaderInfo) {
63         this.requestHeaderInfo = requestHeaderInfo;
64     }
65 }