e6968442d90d9ad05e303f964f8b9808b950d900
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / main / java / org / openecomp / appc / listener / LCM / model / DmaapMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.listener.LCM.model;
24
25 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
26 import com.fasterxml.jackson.annotation.JsonProperty;
27 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
28 import com.fasterxml.jackson.databind.JsonNode;
29
30
31 @JsonSerialize(include = JsonSerialize.Inclusion.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 DmaapMessage() {
54     }
55
56     public String getVersion() {
57         return version;
58     }
59
60     public void setVersion(String version) {
61         this.version = version;
62     }
63
64     public String getType() {
65         return type;
66     }
67
68     public void setType(String type) {
69         this.type = type;
70     }
71
72     public String getCorrelationID() {
73         return correlationID;
74     }
75
76     public void setCorrelationID(String correlationID) {
77         this.correlationID = correlationID;
78     }
79
80     public String getCambriaPartition() {
81         return cambriaPartition;
82     }
83
84     public void setCambriaPartition(String cambriaPartition) {
85         this.cambriaPartition = cambriaPartition;
86     }
87
88     public String getRpcName() {
89         return rpcName;
90     }
91
92     public void setRpcName(String rpcName) {
93         this.rpcName = rpcName;
94     }
95
96     public JsonNode getBody() {
97         return body;
98     }
99
100     public void setBody(JsonNode body) {
101         this.body = body;
102     }
103
104     @Override
105     public String toString() {
106         return "DmaapMessage{" +
107                 "version='" + version + '\'' +
108                 ", type='" + type + '\'' +
109                 ", correlationId='" + correlationID + '\'' +
110                 ", cambriaPartition='" + cambriaPartition + '\'' +
111                 ", rpcName='" + rpcName + '\'' +
112                 ", body=" + body +
113                 '}';
114     }
115
116 }
117