Changes for Checkstyle 8.32
[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 import java.io.Serializable;
26 import java.util.UUID;
27 import lombok.Data;
28 import lombok.NoArgsConstructor;
29
30 @Data
31 @NoArgsConstructor
32 public class ControlLoopResponse implements Serializable {
33
34     private static final long serialVersionUID = 2391252138583119195L;
35
36     @SerializedName("requestID")
37     private UUID requestId;
38     private String closedLoopControlName;
39     private String version = "1.0.0";
40     private String target;
41     private String from;
42     private String policyName;
43     private String policyVersion;
44     private String payload;
45
46     /**
47      * Construct an instance from an existing instance.
48      *
49      * @param response
50      *            the existing instance
51      */
52     public ControlLoopResponse(ControlLoopResponse response) {
53         if (response == null) {
54             return;
55         }
56         this.closedLoopControlName = response.closedLoopControlName;
57         this.requestId = response.requestId;
58         this.target = response.target;
59         this.from = response.from;
60         this.policyName = response.policyName;
61         this.policyVersion = response.policyVersion;
62         this.payload = response.payload;
63         this.version = response.version;
64     }
65 }