1067b3ff73af5c67b49fb64b3bc837bd01dfe31a
[policy/models.git] / models-interactions / model-impl / events / src / main / java / org / onap / policy / controlloop / ControlLoopResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * controlloop
4  * ================================================================================
5  * Copyright (C) 2019 Wipro Limited Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop;
23
24 import com.google.gson.annotations.SerializedName;
25
26 import java.io.Serializable;
27 import java.util.UUID;
28 import lombok.Data;
29 import lombok.NoArgsConstructor;
30
31 @Data
32 @NoArgsConstructor
33 public class ControlLoopResponse implements Serializable {
34
35     private static final long serialVersionUID = 2391252138583119195L;
36
37     @SerializedName("requestID")
38     private UUID requestId;
39     private String closedLoopControlName;
40     private String version = "1.0.0";
41     private String target;
42     private String from;
43     private String policyName;
44     private String policyVersion;
45     private String payload;
46
47     /**
48      * Construct an instance from an existing instance.
49      *
50      * @param response
51      *            the existing instance
52      */
53     public ControlLoopResponse(ControlLoopResponse response) {
54         if (response == null) {
55             return;
56         }
57         this.closedLoopControlName = response.closedLoopControlName;
58         this.requestId = response.requestId;
59         this.target = response.target;
60         this.from = response.from;
61         this.policyName = response.policyName;
62         this.policyVersion = response.policyVersion;
63         this.payload = response.payload;
64         this.version = response.version;
65     }
66 }