net.lightapi.portal.user.ReferenceCreatedEvent Maven / Gradle / Ivy
The newest version!
/**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package net.lightapi.portal.user;
import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecoder;
import org.apache.avro.message.SchemaStore;
@org.apache.avro.specific.AvroGenerated
public class ReferenceCreatedEvent extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord {
private static final long serialVersionUID = 3480185760850875767L;
public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"ReferenceCreatedEvent\",\"namespace\":\"net.lightapi.portal.user\",\"fields\":[{\"name\":\"EventId\",\"type\":{\"type\":\"record\",\"name\":\"EventId\",\"namespace\":\"com.networknt.kafka.common\",\"fields\":[{\"name\":\"id\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"doc\":\"a unique identifier\"},{\"name\":\"nonce\",\"type\":\"long\",\"doc\":\"the number of the transactions for the user\"},{\"name\":\"derived\",\"type\":\"boolean\",\"doc\":\"indicate if the event is derived from event processor\",\"default\":false}]}},{\"name\":\"table\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"doc\":\"reference table\"},{\"name\":\"language\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"doc\":\"value label language\"},{\"name\":\"value\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"doc\":\"reference value\"},{\"name\":\"label\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"doc\":\"value label in language\"},{\"name\":\"email\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"doc\":\"owner email\"},{\"name\":\"desc\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"doc\":\"value description\"},{\"name\":\"timestamp\",\"type\":\"long\",\"doc\":\"time the event is recorded\",\"default\":0}]}");
public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
private static final SpecificData MODEL$ = new SpecificData();
private static final BinaryMessageEncoder ENCODER =
new BinaryMessageEncoder(MODEL$, SCHEMA$);
private static final BinaryMessageDecoder DECODER =
new BinaryMessageDecoder(MODEL$, SCHEMA$);
/**
* Return the BinaryMessageEncoder instance used by this class.
* @return the message encoder used by this class
*/
public static BinaryMessageEncoder getEncoder() {
return ENCODER;
}
/**
* Return the BinaryMessageDecoder instance used by this class.
* @return the message decoder used by this class
*/
public static BinaryMessageDecoder getDecoder() {
return DECODER;
}
/**
* Create a new BinaryMessageDecoder instance for this class that uses the specified {@link SchemaStore}.
* @param resolver a {@link SchemaStore} used to find schemas by fingerprint
* @return a BinaryMessageDecoder instance for this class backed by the given SchemaStore
*/
public static BinaryMessageDecoder createDecoder(SchemaStore resolver) {
return new BinaryMessageDecoder(MODEL$, SCHEMA$, resolver);
}
/**
* Serializes this ReferenceCreatedEvent to a ByteBuffer.
* @return a buffer holding the serialized data for this instance
* @throws java.io.IOException if this instance could not be serialized
*/
public java.nio.ByteBuffer toByteBuffer() throws java.io.IOException {
return ENCODER.encode(this);
}
/**
* Deserializes a ReferenceCreatedEvent from a ByteBuffer.
* @param b a byte buffer holding serialized data for an instance of this class
* @return a ReferenceCreatedEvent instance decoded from the given buffer
* @throws java.io.IOException if the given bytes could not be deserialized into an instance of this class
*/
public static ReferenceCreatedEvent fromByteBuffer(
java.nio.ByteBuffer b) throws java.io.IOException {
return DECODER.decode(b);
}
private com.networknt.kafka.common.EventId EventId;
/** reference table */
private java.lang.String table;
/** value label language */
private java.lang.String language;
/** reference value */
private java.lang.String value;
/** value label in language */
private java.lang.String label;
/** owner email */
private java.lang.String email;
/** value description */
private java.lang.String desc;
/** time the event is recorded */
private long timestamp;
/**
* Default constructor. Note that this does not initialize fields
* to their default values from the schema. If that is desired then
* one should use newBuilder()
.
*/
public ReferenceCreatedEvent() {}
/**
* All-args constructor.
* @param EventId The new value for EventId
* @param table reference table
* @param language value label language
* @param value reference value
* @param label value label in language
* @param email owner email
* @param desc value description
* @param timestamp time the event is recorded
*/
public ReferenceCreatedEvent(com.networknt.kafka.common.EventId EventId, java.lang.String table, java.lang.String language, java.lang.String value, java.lang.String label, java.lang.String email, java.lang.String desc, java.lang.Long timestamp) {
this.EventId = EventId;
this.table = table;
this.language = language;
this.value = value;
this.label = label;
this.email = email;
this.desc = desc;
this.timestamp = timestamp;
}
public org.apache.avro.specific.SpecificData getSpecificData() { return MODEL$; }
public org.apache.avro.Schema getSchema() { return SCHEMA$; }
// Used by DatumWriter. Applications should not call.
public java.lang.Object get(int field$) {
switch (field$) {
case 0: return EventId;
case 1: return table;
case 2: return language;
case 3: return value;
case 4: return label;
case 5: return email;
case 6: return desc;
case 7: return timestamp;
default: throw new IndexOutOfBoundsException("Invalid index: " + field$);
}
}
// Used by DatumReader. Applications should not call.
@SuppressWarnings(value="unchecked")
public void put(int field$, java.lang.Object value$) {
switch (field$) {
case 0: EventId = (com.networknt.kafka.common.EventId)value$; break;
case 1: table = value$ != null ? value$.toString() : null; break;
case 2: language = value$ != null ? value$.toString() : null; break;
case 3: value = value$ != null ? value$.toString() : null; break;
case 4: label = value$ != null ? value$.toString() : null; break;
case 5: email = value$ != null ? value$.toString() : null; break;
case 6: desc = value$ != null ? value$.toString() : null; break;
case 7: timestamp = (java.lang.Long)value$; break;
default: throw new IndexOutOfBoundsException("Invalid index: " + field$);
}
}
/**
* Gets the value of the 'EventId' field.
* @return The value of the 'EventId' field.
*/
public com.networknt.kafka.common.EventId getEventId() {
return EventId;
}
/**
* Sets the value of the 'EventId' field.
* @param value the value to set.
*/
public void setEventId(com.networknt.kafka.common.EventId value) {
this.EventId = value;
}
/**
* Gets the value of the 'table' field.
* @return reference table
*/
public java.lang.String getTable() {
return table;
}
/**
* Sets the value of the 'table' field.
* reference table
* @param value the value to set.
*/
public void setTable(java.lang.String value) {
this.table = value;
}
/**
* Gets the value of the 'language' field.
* @return value label language
*/
public java.lang.String getLanguage() {
return language;
}
/**
* Sets the value of the 'language' field.
* value label language
* @param value the value to set.
*/
public void setLanguage(java.lang.String value) {
this.language = value;
}
/**
* Gets the value of the 'value' field.
* @return reference value
*/
public java.lang.String getValue() {
return value;
}
/**
* Sets the value of the 'value' field.
* reference value
* @param value the value to set.
*/
public void setValue(java.lang.String value) {
this.value = value;
}
/**
* Gets the value of the 'label' field.
* @return value label in language
*/
public java.lang.String getLabel() {
return label;
}
/**
* Sets the value of the 'label' field.
* value label in language
* @param value the value to set.
*/
public void setLabel(java.lang.String value) {
this.label = value;
}
/**
* Gets the value of the 'email' field.
* @return owner email
*/
public java.lang.String getEmail() {
return email;
}
/**
* Sets the value of the 'email' field.
* owner email
* @param value the value to set.
*/
public void setEmail(java.lang.String value) {
this.email = value;
}
/**
* Gets the value of the 'desc' field.
* @return value description
*/
public java.lang.String getDesc() {
return desc;
}
/**
* Sets the value of the 'desc' field.
* value description
* @param value the value to set.
*/
public void setDesc(java.lang.String value) {
this.desc = value;
}
/**
* Gets the value of the 'timestamp' field.
* @return time the event is recorded
*/
public long getTimestamp() {
return timestamp;
}
/**
* Sets the value of the 'timestamp' field.
* time the event is recorded
* @param value the value to set.
*/
public void setTimestamp(long value) {
this.timestamp = value;
}
/**
* Creates a new ReferenceCreatedEvent RecordBuilder.
* @return A new ReferenceCreatedEvent RecordBuilder
*/
public static net.lightapi.portal.user.ReferenceCreatedEvent.Builder newBuilder() {
return new net.lightapi.portal.user.ReferenceCreatedEvent.Builder();
}
/**
* Creates a new ReferenceCreatedEvent RecordBuilder by copying an existing Builder.
* @param other The existing builder to copy.
* @return A new ReferenceCreatedEvent RecordBuilder
*/
public static net.lightapi.portal.user.ReferenceCreatedEvent.Builder newBuilder(net.lightapi.portal.user.ReferenceCreatedEvent.Builder other) {
if (other == null) {
return new net.lightapi.portal.user.ReferenceCreatedEvent.Builder();
} else {
return new net.lightapi.portal.user.ReferenceCreatedEvent.Builder(other);
}
}
/**
* Creates a new ReferenceCreatedEvent RecordBuilder by copying an existing ReferenceCreatedEvent instance.
* @param other The existing instance to copy.
* @return A new ReferenceCreatedEvent RecordBuilder
*/
public static net.lightapi.portal.user.ReferenceCreatedEvent.Builder newBuilder(net.lightapi.portal.user.ReferenceCreatedEvent other) {
if (other == null) {
return new net.lightapi.portal.user.ReferenceCreatedEvent.Builder();
} else {
return new net.lightapi.portal.user.ReferenceCreatedEvent.Builder(other);
}
}
/**
* RecordBuilder for ReferenceCreatedEvent instances.
*/
@org.apache.avro.specific.AvroGenerated
public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase
implements org.apache.avro.data.RecordBuilder {
private com.networknt.kafka.common.EventId EventId;
private com.networknt.kafka.common.EventId.Builder EventIdBuilder;
/** reference table */
private java.lang.String table;
/** value label language */
private java.lang.String language;
/** reference value */
private java.lang.String value;
/** value label in language */
private java.lang.String label;
/** owner email */
private java.lang.String email;
/** value description */
private java.lang.String desc;
/** time the event is recorded */
private long timestamp;
/** Creates a new Builder */
private Builder() {
super(SCHEMA$, MODEL$);
}
/**
* Creates a Builder by copying an existing Builder.
* @param other The existing Builder to copy.
*/
private Builder(net.lightapi.portal.user.ReferenceCreatedEvent.Builder other) {
super(other);
if (isValidValue(fields()[0], other.EventId)) {
this.EventId = data().deepCopy(fields()[0].schema(), other.EventId);
fieldSetFlags()[0] = other.fieldSetFlags()[0];
}
if (other.hasEventIdBuilder()) {
this.EventIdBuilder = com.networknt.kafka.common.EventId.newBuilder(other.getEventIdBuilder());
}
if (isValidValue(fields()[1], other.table)) {
this.table = data().deepCopy(fields()[1].schema(), other.table);
fieldSetFlags()[1] = other.fieldSetFlags()[1];
}
if (isValidValue(fields()[2], other.language)) {
this.language = data().deepCopy(fields()[2].schema(), other.language);
fieldSetFlags()[2] = other.fieldSetFlags()[2];
}
if (isValidValue(fields()[3], other.value)) {
this.value = data().deepCopy(fields()[3].schema(), other.value);
fieldSetFlags()[3] = other.fieldSetFlags()[3];
}
if (isValidValue(fields()[4], other.label)) {
this.label = data().deepCopy(fields()[4].schema(), other.label);
fieldSetFlags()[4] = other.fieldSetFlags()[4];
}
if (isValidValue(fields()[5], other.email)) {
this.email = data().deepCopy(fields()[5].schema(), other.email);
fieldSetFlags()[5] = other.fieldSetFlags()[5];
}
if (isValidValue(fields()[6], other.desc)) {
this.desc = data().deepCopy(fields()[6].schema(), other.desc);
fieldSetFlags()[6] = other.fieldSetFlags()[6];
}
if (isValidValue(fields()[7], other.timestamp)) {
this.timestamp = data().deepCopy(fields()[7].schema(), other.timestamp);
fieldSetFlags()[7] = other.fieldSetFlags()[7];
}
}
/**
* Creates a Builder by copying an existing ReferenceCreatedEvent instance
* @param other The existing instance to copy.
*/
private Builder(net.lightapi.portal.user.ReferenceCreatedEvent other) {
super(SCHEMA$, MODEL$);
if (isValidValue(fields()[0], other.EventId)) {
this.EventId = data().deepCopy(fields()[0].schema(), other.EventId);
fieldSetFlags()[0] = true;
}
this.EventIdBuilder = null;
if (isValidValue(fields()[1], other.table)) {
this.table = data().deepCopy(fields()[1].schema(), other.table);
fieldSetFlags()[1] = true;
}
if (isValidValue(fields()[2], other.language)) {
this.language = data().deepCopy(fields()[2].schema(), other.language);
fieldSetFlags()[2] = true;
}
if (isValidValue(fields()[3], other.value)) {
this.value = data().deepCopy(fields()[3].schema(), other.value);
fieldSetFlags()[3] = true;
}
if (isValidValue(fields()[4], other.label)) {
this.label = data().deepCopy(fields()[4].schema(), other.label);
fieldSetFlags()[4] = true;
}
if (isValidValue(fields()[5], other.email)) {
this.email = data().deepCopy(fields()[5].schema(), other.email);
fieldSetFlags()[5] = true;
}
if (isValidValue(fields()[6], other.desc)) {
this.desc = data().deepCopy(fields()[6].schema(), other.desc);
fieldSetFlags()[6] = true;
}
if (isValidValue(fields()[7], other.timestamp)) {
this.timestamp = data().deepCopy(fields()[7].schema(), other.timestamp);
fieldSetFlags()[7] = true;
}
}
/**
* Gets the value of the 'EventId' field.
* @return The value.
*/
public com.networknt.kafka.common.EventId getEventId() {
return EventId;
}
/**
* Sets the value of the 'EventId' field.
* @param value The value of 'EventId'.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder setEventId(com.networknt.kafka.common.EventId value) {
validate(fields()[0], value);
this.EventIdBuilder = null;
this.EventId = value;
fieldSetFlags()[0] = true;
return this;
}
/**
* Checks whether the 'EventId' field has been set.
* @return True if the 'EventId' field has been set, false otherwise.
*/
public boolean hasEventId() {
return fieldSetFlags()[0];
}
/**
* Gets the Builder instance for the 'EventId' field and creates one if it doesn't exist yet.
* @return This builder.
*/
public com.networknt.kafka.common.EventId.Builder getEventIdBuilder() {
if (EventIdBuilder == null) {
if (hasEventId()) {
setEventIdBuilder(com.networknt.kafka.common.EventId.newBuilder(EventId));
} else {
setEventIdBuilder(com.networknt.kafka.common.EventId.newBuilder());
}
}
return EventIdBuilder;
}
/**
* Sets the Builder instance for the 'EventId' field
* @param value The builder instance that must be set.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder setEventIdBuilder(com.networknt.kafka.common.EventId.Builder value) {
clearEventId();
EventIdBuilder = value;
return this;
}
/**
* Checks whether the 'EventId' field has an active Builder instance
* @return True if the 'EventId' field has an active Builder instance
*/
public boolean hasEventIdBuilder() {
return EventIdBuilder != null;
}
/**
* Clears the value of the 'EventId' field.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder clearEventId() {
EventId = null;
EventIdBuilder = null;
fieldSetFlags()[0] = false;
return this;
}
/**
* Gets the value of the 'table' field.
* reference table
* @return The value.
*/
public java.lang.String getTable() {
return table;
}
/**
* Sets the value of the 'table' field.
* reference table
* @param value The value of 'table'.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder setTable(java.lang.String value) {
validate(fields()[1], value);
this.table = value;
fieldSetFlags()[1] = true;
return this;
}
/**
* Checks whether the 'table' field has been set.
* reference table
* @return True if the 'table' field has been set, false otherwise.
*/
public boolean hasTable() {
return fieldSetFlags()[1];
}
/**
* Clears the value of the 'table' field.
* reference table
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder clearTable() {
table = null;
fieldSetFlags()[1] = false;
return this;
}
/**
* Gets the value of the 'language' field.
* value label language
* @return The value.
*/
public java.lang.String getLanguage() {
return language;
}
/**
* Sets the value of the 'language' field.
* value label language
* @param value The value of 'language'.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder setLanguage(java.lang.String value) {
validate(fields()[2], value);
this.language = value;
fieldSetFlags()[2] = true;
return this;
}
/**
* Checks whether the 'language' field has been set.
* value label language
* @return True if the 'language' field has been set, false otherwise.
*/
public boolean hasLanguage() {
return fieldSetFlags()[2];
}
/**
* Clears the value of the 'language' field.
* value label language
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder clearLanguage() {
language = null;
fieldSetFlags()[2] = false;
return this;
}
/**
* Gets the value of the 'value' field.
* reference value
* @return The value.
*/
public java.lang.String getValue() {
return value;
}
/**
* Sets the value of the 'value' field.
* reference value
* @param value The value of 'value'.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder setValue(java.lang.String value) {
validate(fields()[3], value);
this.value = value;
fieldSetFlags()[3] = true;
return this;
}
/**
* Checks whether the 'value' field has been set.
* reference value
* @return True if the 'value' field has been set, false otherwise.
*/
public boolean hasValue() {
return fieldSetFlags()[3];
}
/**
* Clears the value of the 'value' field.
* reference value
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder clearValue() {
value = null;
fieldSetFlags()[3] = false;
return this;
}
/**
* Gets the value of the 'label' field.
* value label in language
* @return The value.
*/
public java.lang.String getLabel() {
return label;
}
/**
* Sets the value of the 'label' field.
* value label in language
* @param value The value of 'label'.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder setLabel(java.lang.String value) {
validate(fields()[4], value);
this.label = value;
fieldSetFlags()[4] = true;
return this;
}
/**
* Checks whether the 'label' field has been set.
* value label in language
* @return True if the 'label' field has been set, false otherwise.
*/
public boolean hasLabel() {
return fieldSetFlags()[4];
}
/**
* Clears the value of the 'label' field.
* value label in language
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder clearLabel() {
label = null;
fieldSetFlags()[4] = false;
return this;
}
/**
* Gets the value of the 'email' field.
* owner email
* @return The value.
*/
public java.lang.String getEmail() {
return email;
}
/**
* Sets the value of the 'email' field.
* owner email
* @param value The value of 'email'.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder setEmail(java.lang.String value) {
validate(fields()[5], value);
this.email = value;
fieldSetFlags()[5] = true;
return this;
}
/**
* Checks whether the 'email' field has been set.
* owner email
* @return True if the 'email' field has been set, false otherwise.
*/
public boolean hasEmail() {
return fieldSetFlags()[5];
}
/**
* Clears the value of the 'email' field.
* owner email
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder clearEmail() {
email = null;
fieldSetFlags()[5] = false;
return this;
}
/**
* Gets the value of the 'desc' field.
* value description
* @return The value.
*/
public java.lang.String getDesc() {
return desc;
}
/**
* Sets the value of the 'desc' field.
* value description
* @param value The value of 'desc'.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder setDesc(java.lang.String value) {
validate(fields()[6], value);
this.desc = value;
fieldSetFlags()[6] = true;
return this;
}
/**
* Checks whether the 'desc' field has been set.
* value description
* @return True if the 'desc' field has been set, false otherwise.
*/
public boolean hasDesc() {
return fieldSetFlags()[6];
}
/**
* Clears the value of the 'desc' field.
* value description
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder clearDesc() {
desc = null;
fieldSetFlags()[6] = false;
return this;
}
/**
* Gets the value of the 'timestamp' field.
* time the event is recorded
* @return The value.
*/
public long getTimestamp() {
return timestamp;
}
/**
* Sets the value of the 'timestamp' field.
* time the event is recorded
* @param value The value of 'timestamp'.
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder setTimestamp(long value) {
validate(fields()[7], value);
this.timestamp = value;
fieldSetFlags()[7] = true;
return this;
}
/**
* Checks whether the 'timestamp' field has been set.
* time the event is recorded
* @return True if the 'timestamp' field has been set, false otherwise.
*/
public boolean hasTimestamp() {
return fieldSetFlags()[7];
}
/**
* Clears the value of the 'timestamp' field.
* time the event is recorded
* @return This builder.
*/
public net.lightapi.portal.user.ReferenceCreatedEvent.Builder clearTimestamp() {
fieldSetFlags()[7] = false;
return this;
}
@Override
@SuppressWarnings("unchecked")
public ReferenceCreatedEvent build() {
try {
ReferenceCreatedEvent record = new ReferenceCreatedEvent();
if (EventIdBuilder != null) {
try {
record.EventId = this.EventIdBuilder.build();
} catch (org.apache.avro.AvroMissingFieldException e) {
e.addParentField(record.getSchema().getField("EventId"));
throw e;
}
} else {
record.EventId = fieldSetFlags()[0] ? this.EventId : (com.networknt.kafka.common.EventId) defaultValue(fields()[0]);
}
record.table = fieldSetFlags()[1] ? this.table : (java.lang.String) defaultValue(fields()[1]);
record.language = fieldSetFlags()[2] ? this.language : (java.lang.String) defaultValue(fields()[2]);
record.value = fieldSetFlags()[3] ? this.value : (java.lang.String) defaultValue(fields()[3]);
record.label = fieldSetFlags()[4] ? this.label : (java.lang.String) defaultValue(fields()[4]);
record.email = fieldSetFlags()[5] ? this.email : (java.lang.String) defaultValue(fields()[5]);
record.desc = fieldSetFlags()[6] ? this.desc : (java.lang.String) defaultValue(fields()[6]);
record.timestamp = fieldSetFlags()[7] ? this.timestamp : (java.lang.Long) defaultValue(fields()[7]);
return record;
} catch (org.apache.avro.AvroMissingFieldException e) {
throw e;
} catch (java.lang.Exception e) {
throw new org.apache.avro.AvroRuntimeException(e);
}
}
}
@SuppressWarnings("unchecked")
private static final org.apache.avro.io.DatumWriter
WRITER$ = (org.apache.avro.io.DatumWriter)MODEL$.createDatumWriter(SCHEMA$);
@Override public void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException {
WRITER$.write(this, SpecificData.getEncoder(out));
}
@SuppressWarnings("unchecked")
private static final org.apache.avro.io.DatumReader
READER$ = (org.apache.avro.io.DatumReader)MODEL$.createDatumReader(SCHEMA$);
@Override public void readExternal(java.io.ObjectInput in)
throws java.io.IOException {
READER$.read(this, SpecificData.getDecoder(in));
}
@Override protected boolean hasCustomCoders() { return true; }
@Override public void customEncode(org.apache.avro.io.Encoder out)
throws java.io.IOException
{
this.EventId.customEncode(out);
out.writeString(this.table);
out.writeString(this.language);
out.writeString(this.value);
out.writeString(this.label);
out.writeString(this.email);
out.writeString(this.desc);
out.writeLong(this.timestamp);
}
@Override public void customDecode(org.apache.avro.io.ResolvingDecoder in)
throws java.io.IOException
{
org.apache.avro.Schema.Field[] fieldOrder = in.readFieldOrderIfDiff();
if (fieldOrder == null) {
if (this.EventId == null) {
this.EventId = new com.networknt.kafka.common.EventId();
}
this.EventId.customDecode(in);
this.table = in.readString();
this.language = in.readString();
this.value = in.readString();
this.label = in.readString();
this.email = in.readString();
this.desc = in.readString();
this.timestamp = in.readLong();
} else {
for (int i = 0; i < 8; i++) {
switch (fieldOrder[i].pos()) {
case 0:
if (this.EventId == null) {
this.EventId = new com.networknt.kafka.common.EventId();
}
this.EventId.customDecode(in);
break;
case 1:
this.table = in.readString();
break;
case 2:
this.language = in.readString();
break;
case 3:
this.value = in.readString();
break;
case 4:
this.label = in.readString();
break;
case 5:
this.email = in.readString();
break;
case 6:
this.desc = in.readString();
break;
case 7:
this.timestamp = in.readLong();
break;
default:
throw new java.io.IOException("Corrupt ResolvingDecoder.");
}
}
}
}
}