Use lombok annotations for sdnr, simulators
[policy/models.git] / models-interactions / model-impl / sdnr / src / main / java / org / onap / policy / sdnr / PciCommonHeader.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * sdnr
4  * ================================================================================
5  * Copyright (C) 2018 Wipro Limited Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * Modifications Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.sdnr;
24
25 import com.google.gson.annotations.SerializedName;
26 import java.io.Serializable;
27 import java.time.Instant;
28 import java.util.HashMap;
29 import java.util.Map;
30 import java.util.UUID;
31 import lombok.EqualsAndHashCode;
32 import lombok.Getter;
33 import lombok.NoArgsConstructor;
34 import lombok.Setter;
35 import lombok.ToString;
36
37 @Getter
38 @Setter
39 @EqualsAndHashCode
40 @NoArgsConstructor
41 @ToString
42 public class PciCommonHeader implements Serializable {
43
44     private static final long serialVersionUID = 5435363539127062114L;
45
46     @SerializedName(value = "TimeStamp")
47     private Instant timeStamp = Instant.now();
48
49     @SerializedName(value = "APIVer")
50     private String apiVer = "1.0";
51
52     @SerializedName(value = "RequestID")
53     private UUID requestId;
54
55     @SerializedName(value = "SubRequestID")
56     private String subRequestId;
57
58     @SerializedName(value = "RequestTrack")
59     private Map<String, String> requestTrack = new HashMap<>();
60
61     @SerializedName(value = "Flags")
62     private Map<String, String> flags = new HashMap<>();
63
64     /**
65      * Used to copy a pci common header.
66      *
67      * @param commonHeader a header that is defined by the Pci api guide that contains information
68      *        about the request (requestId, flags, etc.)
69      */
70     public PciCommonHeader(PciCommonHeader commonHeader) {
71         this.timeStamp = commonHeader.timeStamp;
72         this.requestId = commonHeader.requestId;
73         this.subRequestId = commonHeader.subRequestId;
74         this.apiVer = commonHeader.getApiVer();
75         if (commonHeader.requestTrack != null) {
76             this.requestTrack.putAll(commonHeader.requestTrack);
77         }
78         if (commonHeader.flags != null) {
79             this.flags.putAll(commonHeader.flags);
80         }
81     }
82 }