97426b40e5332de26edca8b3a8476db4671fd9f1
[policy/drools-applications.git] / controlloop / common / 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  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ============LICENSE_END=========================================================
17  */
18
19 package org.onap.policy.sdnc;
20
21 import com.google.gson.annotations.SerializedName;
22
23 import java.io.Serializable;
24
25 public class SdncHealRequestHeaderInfo implements Serializable {
26
27     private static final long serialVersionUID = 3208673205100673119L;
28
29     @SerializedName("svc-request-id")
30     private String svcRequestId;
31
32     @SerializedName("svc-action")
33     private String svcAction;
34
35     public SdncHealRequestHeaderInfo() {
36         // Default constructor for SdncHealActionVmInfo
37     }
38
39     public String getSvcRequestId() {
40         return svcRequestId;
41     }
42
43     public void setSvcRequestId(String svcRequestId) {
44         this.svcRequestId = svcRequestId;
45     }
46
47     public String getSvcAction() {
48         return svcAction;
49     }
50
51     public void setSvcAction(String svcAction) {
52         this.svcAction = svcAction;
53     }
54 }