replace deprecated JsonSerialize.Inclusion
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / main / java / org / onap / appc / listener / LCM / model / DmaapMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
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  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.listener.LCM.model;
25
26 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
27 import com.fasterxml.jackson.annotation.JsonInclude;
28 import com.fasterxml.jackson.annotation.JsonProperty;
29 import com.fasterxml.jackson.databind.JsonNode;
30
31 @JsonInclude(JsonInclude.Include.NON_NULL)
32 @JsonIgnoreProperties(ignoreUnknown = true)
33 public class DmaapMessage {
34
35     @JsonProperty("version")
36     private String version;
37
38     @JsonProperty("type")
39     private String type;
40
41     @JsonProperty("correlation-id")
42     private String correlationID;
43
44     @JsonProperty("cambria.partition")
45     private String cambriaPartition;
46
47     @JsonProperty("rpc-name")
48     private String rpcName;
49
50     @JsonProperty("body")
51     private JsonNode body;
52
53     public String getVersion() {
54         return version;
55     }
56
57
58     public String getType() {
59         return type;
60     }
61
62     public String getCorrelationID() {
63         return correlationID;
64     }
65
66     public String getCambriaPartition() {
67         return cambriaPartition;
68     }
69
70     public String getRpcName() {
71         return rpcName;
72     }
73
74     public JsonNode getBody() {
75         return body;
76     }
77
78
79     public void setVersion(String version) {
80         this.version = version;
81     }
82
83     public void setType(String type) {
84         this.type = type;
85     }
86
87     public void setCorrelationID(String correlationID) {
88         this.correlationID = correlationID;
89     }
90
91     public void setCambriaPartition(String cambriaPartition) {
92         this.cambriaPartition = cambriaPartition;
93     }
94
95     public void setRpcName(String rpcName) {
96         this.rpcName = rpcName;
97     }
98
99     public void setBody(JsonNode body) {
100         this.body = body;
101     }
102
103     @Override
104     public String toString() {
105         return "DmaapMessage{" +
106             "version='" + version + '\'' +
107             ", type='" + type + '\'' +
108             ", correlationId='" + correlationID + '\'' +
109             ", cambriaPartition='" + cambriaPartition + '\'' +
110             ", rpcName='" + rpcName + '\'' +
111             ", body=" + body +
112             '}';
113     }
114 }
115