7b15ae152a12aeeeb6b6f0e652bdbc98f0633bd7
[ccsdk/features.git] /
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt
4  * =================================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 package org.onap.ccsdk.features.sdnr.wt.mountpointstateprovider.impl;
19
20 import com.fasterxml.jackson.annotation.JsonIgnore;
21 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
22
23 @JsonPropertyOrder({"domain", "eventId", "eventName", "eventType", "lastEpochMicrosec", "nfcNamingCode", "nfNamingCode", "nfVendorName", "priority", "reportingEntityId",
24     "reportingEntityName", "sequence", "sourceId", "sourceName", "startEpochMicrosec", "timeZoneOffset", "version", "vesEventListenerVersion"})
25 public class VESCommonEventHeaderPOJO {
26
27     private String domain = "";
28     private String eventId = "";
29     private String eventName = "";
30     private String eventType = "";
31     private long sequence = 0L;
32     private String priority = "";
33     @JsonIgnore
34     private String reportingEntityId = "";
35     private String reportingEntityName = "";
36     private String sourceId = "";
37     private String sourceName = "";
38     private long startEpochMicrosec = 0L;
39     private long lastEpochMicrosec = 0L;
40     private String nfcNamingCode = "";
41     private String nfNamingCode = "";
42     private String nfVendorName = "";
43     private String timeZoneOffset = "+00:00";
44     private String version = "4.1";
45     private String vesEventListenerVersion = "7.1.1";
46
47     public String getDomain() {
48         return domain;
49     }
50
51     public void setDomain(String domain) {
52         this.domain = domain;
53     }
54
55     public String getEventId() {
56         return eventId;
57     }
58
59     public void setEventId(String eventId) {
60         this.eventId = eventId;
61     }
62
63     public String getEventName() {
64         return eventName;
65     }
66
67     public void setEventName(String eventName) {
68         this.eventName = eventName;
69     }
70
71     public String getEventType() {
72         return eventType;
73     }
74
75     public void setEventType(String eventType) {
76         this.eventType = eventType;
77     }
78
79     public Long getSequence() {
80         return sequence;
81     }
82
83     public void setSequence(long sequenceNo) {
84         this.sequence = sequenceNo;
85     }
86
87     public String getPriority() {
88         return priority;
89     }
90
91     public void setPriority(String priority) {
92         this.priority = priority;
93     }
94
95     public String getReportingEntityId() {
96         return reportingEntityId;
97     }
98
99     public void setReportingEntityId(String reportingEntityId) {
100         this.reportingEntityId = reportingEntityId;
101     }
102
103     public String getReportingEntityName() {
104         return reportingEntityName;
105     }
106
107     public void setReportingEntityName(String reportingEntityName) {
108         this.reportingEntityName = reportingEntityName;
109     }
110
111     public String getSourceId() {
112         return sourceId;
113     }
114
115     public void setSourceId(String sourceId) {
116         this.sourceId = sourceId;
117     }
118
119     public String getSourceName() {
120         return sourceName;
121     }
122
123     public void setSourceName(String sourceName) {
124         this.sourceName = sourceName;
125     }
126
127     public long getStartEpochMicrosec() {
128         return startEpochMicrosec;
129     }
130
131     public void setStartEpochMicrosec(long startEpochMicrosec) {
132         this.startEpochMicrosec = startEpochMicrosec;
133     }
134
135     public long getLastEpochMicrosec() {
136         return lastEpochMicrosec;
137     }
138
139     public void setLastEpochMicrosec(long lastEpochMicrosec) {
140         this.lastEpochMicrosec = lastEpochMicrosec;
141     }
142
143     public String getNfcNamingCode() {
144         return nfcNamingCode;
145     }
146
147     public void setNfcNamingCode(String nfcNamingCode) {
148         this.nfcNamingCode = nfcNamingCode;
149     }
150
151     public String getNfNamingCode() {
152         return nfNamingCode;
153     }
154
155     public void setNfNamingCode(String nfNamingCode) {
156         this.nfNamingCode = nfNamingCode;
157     }
158
159     public String getNfVendorName() {
160         return nfVendorName;
161     }
162
163     public void setNfVendorName(String nfVendorName) {
164         this.nfVendorName = nfVendorName;
165     }
166
167     public String getTimeZoneOffset() {
168         return timeZoneOffset;
169     }
170
171     public void setTimeZoneOffset(String timeZoneOffset) {
172         this.timeZoneOffset = timeZoneOffset;
173     }
174
175     public String getVersion() {
176         return version;
177     }
178
179     public void setVersion(String version) {
180         this.version = version;
181     }
182
183     public String getVesEventListenerVersion() {
184         return vesEventListenerVersion;
185     }
186
187     public void setVesEventListenerVersion(String vesEventListenerVersion) {
188         this.vesEventListenerVersion = vesEventListenerVersion;
189     }
190 }