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
10 * http://www.apache.org/licenses/LICENSE-2.0
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
16 * ============LICENSE_END==========================================================================
18 package org.onap.ccsdk.features.sdnr.wt.mountpointstateprovider.impl;
20 import com.fasterxml.jackson.annotation.JsonIgnore;
21 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
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 {
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 = "";
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";
47 public String getDomain() {
51 public void setDomain(String domain) {
55 public String getEventId() {
59 public void setEventId(String eventId) {
60 this.eventId = eventId;
63 public String getEventName() {
67 public void setEventName(String eventName) {
68 this.eventName = eventName;
71 public String getEventType() {
75 public void setEventType(String eventType) {
76 this.eventType = eventType;
79 public Long getSequence() {
83 public void setSequence(long sequenceNo) {
84 this.sequence = sequenceNo;
87 public String getPriority() {
91 public void setPriority(String priority) {
92 this.priority = priority;
95 public String getReportingEntityId() {
96 return reportingEntityId;
99 public void setReportingEntityId(String reportingEntityId) {
100 this.reportingEntityId = reportingEntityId;
103 public String getReportingEntityName() {
104 return reportingEntityName;
107 public void setReportingEntityName(String reportingEntityName) {
108 this.reportingEntityName = reportingEntityName;
111 public String getSourceId() {
115 public void setSourceId(String sourceId) {
116 this.sourceId = sourceId;
119 public String getSourceName() {
123 public void setSourceName(String sourceName) {
124 this.sourceName = sourceName;
127 public long getStartEpochMicrosec() {
128 return startEpochMicrosec;
131 public void setStartEpochMicrosec(long startEpochMicrosec) {
132 this.startEpochMicrosec = startEpochMicrosec;
135 public long getLastEpochMicrosec() {
136 return lastEpochMicrosec;
139 public void setLastEpochMicrosec(long lastEpochMicrosec) {
140 this.lastEpochMicrosec = lastEpochMicrosec;
143 public String getNfcNamingCode() {
144 return nfcNamingCode;
147 public void setNfcNamingCode(String nfcNamingCode) {
148 this.nfcNamingCode = nfcNamingCode;
151 public String getNfNamingCode() {
155 public void setNfNamingCode(String nfNamingCode) {
156 this.nfNamingCode = nfNamingCode;
159 public String getNfVendorName() {
163 public void setNfVendorName(String nfVendorName) {
164 this.nfVendorName = nfVendorName;
167 public String getTimeZoneOffset() {
168 return timeZoneOffset;
171 public void setTimeZoneOffset(String timeZoneOffset) {
172 this.timeZoneOffset = timeZoneOffset;
175 public String getVersion() {
179 public void setVersion(String version) {
180 this.version = version;
183 public String getVesEventListenerVersion() {
184 return vesEventListenerVersion;
187 public void setVesEventListenerVersion(String vesEventListenerVersion) {
188 this.vesEventListenerVersion = vesEventListenerVersion;