Energistics.Protocol.Discovery.GetResourcesResponse Maven / Gradle / Ivy
The newest version!
/**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package Energistics.Protocol.Discovery;
import org.apache.avro.specific.SpecificData;
@SuppressWarnings("all")
@org.apache.avro.specific.AvroGenerated
public class GetResourcesResponse extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord {
private static final long serialVersionUID = 2126093050849077188L;
public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"GetResourcesResponse\",\"namespace\":\"Energistics.Protocol.Discovery\",\"fields\":[{\"name\":\"resource\",\"type\":{\"type\":\"record\",\"name\":\"Resource\",\"namespace\":\"Energistics.Datatypes.Object\",\"fields\":[{\"name\":\"uri\",\"type\":\"string\"},{\"name\":\"contentType\",\"type\":\"string\"},{\"name\":\"name\",\"type\":\"string\"},{\"name\":\"channelSubscribable\",\"type\":\"boolean\"},{\"name\":\"customData\",\"type\":{\"type\":\"map\",\"values\":\"string\"}},{\"name\":\"resourceType\",\"type\":\"string\"},{\"name\":\"hasChildren\",\"type\":\"int\"},{\"name\":\"uuid\",\"type\":[\"null\",\"string\"]},{\"name\":\"lastChanged\",\"type\":\"long\"},{\"name\":\"objectNotifiable\",\"type\":\"boolean\"}],\"fullName\":\"Energistics.Datatypes.Object.Resource\",\"depends\":[]}}],\"messageType\":\"2\",\"protocol\":\"3\",\"senderRole\":\"store\",\"protocolRoles\":\"store,customer\",\"fullName\":\"Energistics.Protocol.Discovery.GetResourcesResponse\",\"depends\":[\"Energistics.Datatypes.Object.Resource\"]}");
public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
@Deprecated public Energistics.Datatypes.Object.Resource resource;
/**
* 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 GetResourcesResponse() {}
/**
* All-args constructor.
* @param resource The new value for resource
*/
public GetResourcesResponse(Energistics.Datatypes.Object.Resource resource) {
this.resource = resource;
}
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 resource;
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: resource = (Energistics.Datatypes.Object.Resource)value$; break;
default: throw new org.apache.avro.AvroRuntimeException("Bad index");
}
}
/**
* Gets the value of the 'resource' field.
* @return The value of the 'resource' field.
*/
public Energistics.Datatypes.Object.Resource getResource() {
return resource;
}
/**
* Sets the value of the 'resource' field.
* @param value the value to set.
*/
public void setResource(Energistics.Datatypes.Object.Resource value) {
this.resource = value;
}
/**
* Creates a new GetResourcesResponse RecordBuilder.
* @return A new GetResourcesResponse RecordBuilder
*/
public static Energistics.Protocol.Discovery.GetResourcesResponse.Builder newBuilder() {
return new Energistics.Protocol.Discovery.GetResourcesResponse.Builder();
}
/**
* Creates a new GetResourcesResponse RecordBuilder by copying an existing Builder.
* @param other The existing builder to copy.
* @return A new GetResourcesResponse RecordBuilder
*/
public static Energistics.Protocol.Discovery.GetResourcesResponse.Builder newBuilder(Energistics.Protocol.Discovery.GetResourcesResponse.Builder other) {
return new Energistics.Protocol.Discovery.GetResourcesResponse.Builder(other);
}
/**
* Creates a new GetResourcesResponse RecordBuilder by copying an existing GetResourcesResponse instance.
* @param other The existing instance to copy.
* @return A new GetResourcesResponse RecordBuilder
*/
public static Energistics.Protocol.Discovery.GetResourcesResponse.Builder newBuilder(Energistics.Protocol.Discovery.GetResourcesResponse other) {
return new Energistics.Protocol.Discovery.GetResourcesResponse.Builder(other);
}
/**
* RecordBuilder for GetResourcesResponse instances.
*/
public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase
implements org.apache.avro.data.RecordBuilder {
private Energistics.Datatypes.Object.Resource resource;
private Energistics.Datatypes.Object.Resource.Builder resourceBuilder;
/** Creates a new Builder */
private Builder() {
super(SCHEMA$);
}
/**
* Creates a Builder by copying an existing Builder.
* @param other The existing Builder to copy.
*/
private Builder(Energistics.Protocol.Discovery.GetResourcesResponse.Builder other) {
super(other);
if (isValidValue(fields()[0], other.resource)) {
this.resource = data().deepCopy(fields()[0].schema(), other.resource);
fieldSetFlags()[0] = true;
}
if (other.hasResourceBuilder()) {
this.resourceBuilder = Energistics.Datatypes.Object.Resource.newBuilder(other.getResourceBuilder());
}
}
/**
* Creates a Builder by copying an existing GetResourcesResponse instance
* @param other The existing instance to copy.
*/
private Builder(Energistics.Protocol.Discovery.GetResourcesResponse other) {
super(SCHEMA$);
if (isValidValue(fields()[0], other.resource)) {
this.resource = data().deepCopy(fields()[0].schema(), other.resource);
fieldSetFlags()[0] = true;
}
this.resourceBuilder = null;
}
/**
* Gets the value of the 'resource' field.
* @return The value.
*/
public Energistics.Datatypes.Object.Resource getResource() {
return resource;
}
/**
* Sets the value of the 'resource' field.
* @param value The value of 'resource'.
* @return This builder.
*/
public Energistics.Protocol.Discovery.GetResourcesResponse.Builder setResource(Energistics.Datatypes.Object.Resource value) {
validate(fields()[0], value);
this.resourceBuilder = null;
this.resource = value;
fieldSetFlags()[0] = true;
return this;
}
/**
* Checks whether the 'resource' field has been set.
* @return True if the 'resource' field has been set, false otherwise.
*/
public boolean hasResource() {
return fieldSetFlags()[0];
}
/**
* Gets the Builder instance for the 'resource' field and creates one if it doesn't exist yet.
* @return This builder.
*/
public Energistics.Datatypes.Object.Resource.Builder getResourceBuilder() {
if (resourceBuilder == null) {
if (hasResource()) {
setResourceBuilder(Energistics.Datatypes.Object.Resource.newBuilder(resource));
} else {
setResourceBuilder(Energistics.Datatypes.Object.Resource.newBuilder());
}
}
return resourceBuilder;
}
/**
* Sets the Builder instance for the 'resource' field
* @param value The builder instance that must be set.
* @return This builder.
*/
public Energistics.Protocol.Discovery.GetResourcesResponse.Builder setResourceBuilder(Energistics.Datatypes.Object.Resource.Builder value) {
clearResource();
resourceBuilder = value;
return this;
}
/**
* Checks whether the 'resource' field has an active Builder instance
* @return True if the 'resource' field has an active Builder instance
*/
public boolean hasResourceBuilder() {
return resourceBuilder != null;
}
/**
* Clears the value of the 'resource' field.
* @return This builder.
*/
public Energistics.Protocol.Discovery.GetResourcesResponse.Builder clearResource() {
resource = null;
resourceBuilder = null;
fieldSetFlags()[0] = false;
return this;
}
@Override
public GetResourcesResponse build() {
try {
GetResourcesResponse record = new GetResourcesResponse();
if (resourceBuilder != null) {
record.resource = this.resourceBuilder.build();
} else {
record.resource = fieldSetFlags()[0] ? this.resource : (Energistics.Datatypes.Object.Resource) defaultValue(fields()[0]);
}
return record;
} catch (Exception e) {
throw new org.apache.avro.AvroRuntimeException(e);
}
}
}
private static final org.apache.avro.io.DatumWriter
WRITER$ = new org.apache.avro.specific.SpecificDatumWriter(SCHEMA$);
@Override public void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException {
WRITER$.write(this, SpecificData.getEncoder(out));
}
private static final org.apache.avro.io.DatumReader
READER$ = new org.apache.avro.specific.SpecificDatumReader(SCHEMA$);
@Override public void readExternal(java.io.ObjectInput in)
throws java.io.IOException {
READER$.read(this, SpecificData.getDecoder(in));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy