/** * Autogenerated by Avro * * DO NOT EDIT DIRECTLY */ package org.kaaproject.kaa.common.endpoint.gen; @SuppressWarnings("all") @org.apache.avro.specific.AvroGenerated public class UserDetachNotification extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord { public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"UserDetachNotification\",\"namespace\":\"org.kaaproject.kaa.common.endpoint.gen\",\"fields\":[{\"name\":\"endpointAccessToken\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}],\"direction\":\"in\"}"); private java.lang.String endpointAccessToken; /** * Default constructor. Note that this does not initialize fields * to their default values from the schema. If that is desired then * one should use {@link \#newBuilder()}. */ public UserDetachNotification() { } /** * All-args constructor. */ public UserDetachNotification(java.lang.String endpointAccessToken) { this.endpointAccessToken = endpointAccessToken; } public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; } /** * Creates a new UserDetachNotification RecordBuilder */ public static org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder newBuilder() { return new org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder(); } /** * Creates a new UserDetachNotification RecordBuilder by copying an existing Builder */ public static org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder newBuilder(org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder other) { return new org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder(other); } /** * Creates a new UserDetachNotification RecordBuilder by copying an existing * UserDetachNotification instance */ public static org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder newBuilder(org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification other) { return new org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder(other); } 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 endpointAccessToken; default: throw new org.apache.avro.AvroRuntimeException("Bad index"); } } // Used by DatumReader. Applications should not call. @SuppressWarnings(value = "unchecked") public void put(int field$, java.lang.Object value$) { switch (field$) { case 0: endpointAccessToken = (java.lang.String) value$; break; default: throw new org.apache.avro.AvroRuntimeException("Bad index"); } } /** * Gets the value of the 'endpointAccessToken' field. */ public java.lang.String getEndpointAccessToken() { return endpointAccessToken; } /** * Sets the value of the 'endpointAccessToken' field. * * @param value the value to set. */ public void setEndpointAccessToken(java.lang.String value) { this.endpointAccessToken = value; } /** * RecordBuilder for UserDetachNotification instances. */ public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase<UserDetachNotification> implements org.apache.avro.data.RecordBuilder<UserDetachNotification> { private java.lang.String endpointAccessToken; /** * Creates a new Builder */ private Builder() { super(org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.SCHEMA$); } /** * Creates a Builder by copying an existing Builder */ private Builder(org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder other) { super(other); if (isValidValue(fields()[0], other.endpointAccessToken)) { this.endpointAccessToken = data().deepCopy(fields()[0].schema(), other.endpointAccessToken); fieldSetFlags()[0] = true; } } /** * Creates a Builder by copying an existing UserDetachNotification instance */ private Builder(org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification other) { super(org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.SCHEMA$); if (isValidValue(fields()[0], other.endpointAccessToken)) { this.endpointAccessToken = data().deepCopy(fields()[0].schema(), other.endpointAccessToken); fieldSetFlags()[0] = true; } } /** * Gets the value of the 'endpointAccessToken' field */ public java.lang.String getEndpointAccessToken() { return endpointAccessToken; } /** * Sets the value of the 'endpointAccessToken' field */ public org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder setEndpointAccessToken(java.lang.String value) { validate(fields()[0], value); this.endpointAccessToken = value; fieldSetFlags()[0] = true; return this; } /** * Checks whether the 'endpointAccessToken' field has been set */ public boolean hasEndpointAccessToken() { return fieldSetFlags()[0]; } /** * Clears the value of the 'endpointAccessToken' field */ public org.kaaproject.kaa.common.endpoint.gen.UserDetachNotification.Builder clearEndpointAccessToken() { endpointAccessToken = null; fieldSetFlags()[0] = false; return this; } @Override public UserDetachNotification build() { try { UserDetachNotification record = new UserDetachNotification(); record.endpointAccessToken = fieldSetFlags()[0] ? this.endpointAccessToken : (java.lang.String) defaultValue(fields()[0]); return record; } catch (Exception e) { throw new org.apache.avro.AvroRuntimeException(e); } } } }