Changes for Checkstyle 8.32
[policy/models.git] / models-interactions / model-impl / sdnc / src / main / java / org / onap / policy / sdnc / SdncHealRequestHeaderInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2018 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 SdncHealRequestHeaderInfo implements Serializable {
30
31     private static final long serialVersionUID = 3208673205100673119L;
32
33     @SerializedName("svc-request-id")
34     private String svcRequestId;
35
36     @SerializedName("svc-action")
37     private String svcAction;
38
39     public SdncHealRequestHeaderInfo() {
40         // Default constructor for SdncHealActionVmInfo
41     }
42 }