/** * Autogenerated by Avro * * DO NOT EDIT DIRECTLY */ package org.kaaproject.kaa.common.endpoint.gen; @SuppressWarnings("all") @org.apache.avro.specific.AvroGenerated public class EndpointAttachRequest 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\":\"EndpointAttachRequest\",\"namespace\":\"org.kaaproject.kaa.common.endpoint.gen\",\"fields\":[{\"name\":\"requestId\",\"type\":\"int\"},{\"name\":\"endpointAccessToken\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}],\"direction\":\"out\"}"); private int requestId; 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 EndpointAttachRequest() { } /** * All-args constructor. */ public EndpointAttachRequest(java.lang.Integer requestId, java.lang.String endpointAccessToken) { this.requestId = requestId; this.endpointAccessToken = endpointAccessToken; } public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; } /** * Creates a new EndpointAttachRequest RecordBuilder */ public static org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder newBuilder() { return new org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder(); } /** * Creates a new EndpointAttachRequest RecordBuilder by copying an existing Builder */ public static org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder newBuilder(org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder other) { return new org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder(other); } /** * Creates a new EndpointAttachRequest RecordBuilder by copying an existing EndpointAttachRequest * instance */ public static org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder newBuilder(org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest other) { return new org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.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 requestId; case 1: 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: requestId = (java.lang.Integer) value$; break; case 1: endpointAccessToken = (java.lang.String) value$; break; default: throw new org.apache.avro.AvroRuntimeException("Bad index"); } } /** * Gets the value of the 'requestId' field. */ public java.lang.Integer getRequestId() { return requestId; } /** * Sets the value of the 'requestId' field. * * @param value the value to set. */ public void setRequestId(java.lang.Integer value) { this.requestId = value; } /** * 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 EndpointAttachRequest instances. */ public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase<EndpointAttachRequest> implements org.apache.avro.data.RecordBuilder<EndpointAttachRequest> { private int requestId; private java.lang.String endpointAccessToken; /** * Creates a new Builder */ private Builder() { super(org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.SCHEMA$); } /** * Creates a Builder by copying an existing Builder */ private Builder(org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder other) { super(other); if (isValidValue(fields()[0], other.requestId)) { this.requestId = data().deepCopy(fields()[0].schema(), other.requestId); fieldSetFlags()[0] = true; } if (isValidValue(fields()[1], other.endpointAccessToken)) { this.endpointAccessToken = data().deepCopy(fields()[1].schema(), other.endpointAccessToken); fieldSetFlags()[1] = true; } } /** * Creates a Builder by copying an existing EndpointAttachRequest instance */ private Builder(org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest other) { super(org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.SCHEMA$); if (isValidValue(fields()[0], other.requestId)) { this.requestId = data().deepCopy(fields()[0].schema(), other.requestId); fieldSetFlags()[0] = true; } if (isValidValue(fields()[1], other.endpointAccessToken)) { this.endpointAccessToken = data().deepCopy(fields()[1].schema(), other.endpointAccessToken); fieldSetFlags()[1] = true; } } /** * Gets the value of the 'requestId' field */ public java.lang.Integer getRequestId() { return requestId; } /** * Sets the value of the 'requestId' field */ public org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder setRequestId(int value) { validate(fields()[0], value); this.requestId = value; fieldSetFlags()[0] = true; return this; } /** * Checks whether the 'requestId' field has been set */ public boolean hasRequestId() { return fieldSetFlags()[0]; } /** * Clears the value of the 'requestId' field */ public org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder clearRequestId() { fieldSetFlags()[0] = false; return this; } /** * 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.EndpointAttachRequest.Builder setEndpointAccessToken(java.lang.String value) { validate(fields()[1], value); this.endpointAccessToken = value; fieldSetFlags()[1] = true; return this; } /** * Checks whether the 'endpointAccessToken' field has been set */ public boolean hasEndpointAccessToken() { return fieldSetFlags()[1]; } /** * Clears the value of the 'endpointAccessToken' field */ public org.kaaproject.kaa.common.endpoint.gen.EndpointAttachRequest.Builder clearEndpointAccessToken() { endpointAccessToken = null; fieldSetFlags()[1] = false; return this; } @Override public EndpointAttachRequest build() { try { EndpointAttachRequest record = new EndpointAttachRequest(); record.requestId = fieldSetFlags()[0] ? this.requestId : (java.lang.Integer) defaultValue(fields()[0]); record.endpointAccessToken = fieldSetFlags()[1] ? this.endpointAccessToken : (java.lang.String) defaultValue(fields()[1]); return record; } catch (Exception e) { throw new org.apache.avro.AvroRuntimeException(e); } } } }