7590c0da4a97c0b2551d0c7825fec75f763a9466
[policy/drools-applications.git] / controlloop / common / model-impl / sdnc / src / main / java / org / onap / policy / sdnc / SdncRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2018-2019 Huawei Technologies Co., Ltd. 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 import java.util.UUID;
25
26 public class SdncRequest implements Serializable {
27
28     private static final long serialVersionUID = 3736300970326332512L;
29     // These fields are not serialized and not part of JSON
30     private transient String nsInstanceId;
31     private transient UUID requestId;
32     private transient String url;
33
34     @SerializedName("input")
35     private SdncHealRequest healRequest;
36
37     public SdncRequest() {
38             // Default constructor for SdncRequest
39     }
40
41     public String getNsInstanceId() {
42         return nsInstanceId;
43     }
44
45     public void setNsInstanceId(String nsInstanceId) {
46         this.nsInstanceId = nsInstanceId;
47     }
48
49     public UUID getRequestId() {
50         return requestId;
51     }
52
53     public void setRequestId(UUID requestId) {
54         this.requestId = requestId;
55     }
56
57     public SdncHealRequest getHealRequest() {
58         return healRequest;
59     }
60
61     public void setHealRequest(SdncHealRequest healRequest) {
62         this.healRequest = healRequest;
63     }
64
65     public String getUrl() {
66         return url;
67     }
68
69     public void setUrl(String url) {
70         this.url = url;
71     }
72 }