Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.apache.kafka.common.message.DescribeConfigsResponseData Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// THIS CODE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
package org.apache.kafka.common.message;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import org.apache.kafka.common.errors.UnsupportedVersionException;
import org.apache.kafka.common.protocol.ApiMessage;
import org.apache.kafka.common.protocol.Message;
import org.apache.kafka.common.protocol.MessageUtil;
import org.apache.kafka.common.protocol.ObjectSerializationCache;
import org.apache.kafka.common.protocol.Readable;
import org.apache.kafka.common.protocol.Writable;
import org.apache.kafka.common.protocol.types.ArrayOf;
import org.apache.kafka.common.protocol.types.Field;
import org.apache.kafka.common.protocol.types.RawTaggedField;
import org.apache.kafka.common.protocol.types.RawTaggedFieldWriter;
import org.apache.kafka.common.protocol.types.Schema;
import org.apache.kafka.common.protocol.types.Struct;
import org.apache.kafka.common.protocol.types.Type;
import org.apache.kafka.common.utils.ByteUtils;
public class DescribeConfigsResponseData implements ApiMessage {
private int throttleTimeMs;
private List results;
private List _unknownTaggedFields;
public static final Schema SCHEMA_0 =
new Schema(
new Field("throttle_time_ms", Type.INT32, "The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota."),
new Field("results", new ArrayOf(DescribeConfigsResult.SCHEMA_0), "The results for each resource.")
);
public static final Schema SCHEMA_1 =
new Schema(
new Field("throttle_time_ms", Type.INT32, "The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota."),
new Field("results", new ArrayOf(DescribeConfigsResult.SCHEMA_1), "The results for each resource.")
);
public static final Schema SCHEMA_2 = SCHEMA_1;
public static final Schema[] SCHEMAS = new Schema[] {
SCHEMA_0,
SCHEMA_1,
SCHEMA_2
};
public DescribeConfigsResponseData(Readable _readable, short _version) {
read(_readable, _version);
}
public DescribeConfigsResponseData(Struct struct, short _version) {
fromStruct(struct, _version);
}
public DescribeConfigsResponseData() {
this.throttleTimeMs = 0;
this.results = new ArrayList();
}
@Override
public short apiKey() {
return 32;
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 2;
}
@Override
public void read(Readable _readable, short _version) {
this.throttleTimeMs = _readable.readInt();
{
int arrayLength;
arrayLength = _readable.readInt();
if (arrayLength < 0) {
throw new RuntimeException("non-nullable field results was serialized as null");
} else {
ArrayList newCollection = new ArrayList(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(new DescribeConfigsResult(_readable, _version));
}
this.results = newCollection;
}
}
this._unknownTaggedFields = null;
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
int _numTaggedFields = 0;
_writable.writeInt(throttleTimeMs);
_writable.writeInt(results.size());
for (DescribeConfigsResult resultsElement : results) {
resultsElement.write(_writable, _cache, _version);
}
RawTaggedFieldWriter _rawWriter = RawTaggedFieldWriter.forFields(_unknownTaggedFields);
_numTaggedFields += _rawWriter.numFields();
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
}
@Override
public void fromStruct(Struct struct, short _version) {
this._unknownTaggedFields = null;
this.throttleTimeMs = struct.getInt("throttle_time_ms");
{
Object[] _nestedObjects = struct.getArray("results");
this.results = new ArrayList(_nestedObjects.length);
for (Object nestedObject : _nestedObjects) {
this.results.add(new DescribeConfigsResult((Struct) nestedObject, _version));
}
}
}
@Override
public Struct toStruct(short _version) {
Struct struct = new Struct(SCHEMAS[_version]);
struct.set("throttle_time_ms", this.throttleTimeMs);
{
Struct[] _nestedObjects = new Struct[results.size()];
int i = 0;
for (DescribeConfigsResult element : this.results) {
_nestedObjects[i++] = element.toStruct(_version);
}
struct.set("results", (Object[]) _nestedObjects);
}
return struct;
}
@Override
public int size(ObjectSerializationCache _cache, short _version) {
int _size = 0, _numTaggedFields = 0;
_size += 4;
{
int _arraySize = 0;
_arraySize += 4;
for (DescribeConfigsResult resultsElement : results) {
_arraySize += resultsElement.size(_cache, _version);
}
_size += _arraySize;
}
if (_unknownTaggedFields != null) {
_numTaggedFields += _unknownTaggedFields.size();
for (RawTaggedField _field : _unknownTaggedFields) {
_size += ByteUtils.sizeOfUnsignedVarint(_field.tag());
_size += ByteUtils.sizeOfUnsignedVarint(_field.size());
_size += _field.size();
}
}
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
return _size;
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof DescribeConfigsResponseData)) return false;
DescribeConfigsResponseData other = (DescribeConfigsResponseData) obj;
if (throttleTimeMs != other.throttleTimeMs) return false;
if (this.results == null) {
if (other.results != null) return false;
} else {
if (!this.results.equals(other.results)) return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 0;
hashCode = 31 * hashCode + throttleTimeMs;
hashCode = 31 * hashCode + (results == null ? 0 : results.hashCode());
return hashCode;
}
@Override
public String toString() {
return "DescribeConfigsResponseData("
+ "throttleTimeMs=" + throttleTimeMs
+ ", results=" + MessageUtil.deepToString(results.iterator())
+ ")";
}
public int throttleTimeMs() {
return this.throttleTimeMs;
}
public List results() {
return this.results;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public DescribeConfigsResponseData setThrottleTimeMs(int v) {
this.throttleTimeMs = v;
return this;
}
public DescribeConfigsResponseData setResults(List v) {
this.results = v;
return this;
}
static public class DescribeConfigsResult implements Message {
private short errorCode;
private String errorMessage;
private byte resourceType;
private String resourceName;
private List configs;
private List _unknownTaggedFields;
public static final Schema SCHEMA_0 =
new Schema(
new Field("error_code", Type.INT16, "The error code, or 0 if we were able to successfully describe the configurations."),
new Field("error_message", Type.NULLABLE_STRING, "The error message, or null if we were able to successfully describe the configurations."),
new Field("resource_type", Type.INT8, "The resource type."),
new Field("resource_name", Type.STRING, "The resource name."),
new Field("configs", new ArrayOf(DescribeConfigsResourceResult.SCHEMA_0), "Each listed configuration.")
);
public static final Schema SCHEMA_1 =
new Schema(
new Field("error_code", Type.INT16, "The error code, or 0 if we were able to successfully describe the configurations."),
new Field("error_message", Type.NULLABLE_STRING, "The error message, or null if we were able to successfully describe the configurations."),
new Field("resource_type", Type.INT8, "The resource type."),
new Field("resource_name", Type.STRING, "The resource name."),
new Field("configs", new ArrayOf(DescribeConfigsResourceResult.SCHEMA_1), "Each listed configuration.")
);
public static final Schema SCHEMA_2 = SCHEMA_1;
public static final Schema[] SCHEMAS = new Schema[] {
SCHEMA_0,
SCHEMA_1,
SCHEMA_2
};
public DescribeConfigsResult(Readable _readable, short _version) {
read(_readable, _version);
}
public DescribeConfigsResult(Struct struct, short _version) {
fromStruct(struct, _version);
}
public DescribeConfigsResult() {
this.errorCode = (short) 0;
this.errorMessage = "";
this.resourceType = (byte) 0;
this.resourceName = "";
this.configs = new ArrayList();
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 2;
}
@Override
public void read(Readable _readable, short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DescribeConfigsResult");
}
this.errorCode = _readable.readShort();
{
int length;
length = _readable.readShort();
if (length < 0) {
this.errorMessage = null;
} else if (length > 0x7fff) {
throw new RuntimeException("string field errorMessage had invalid length " + length);
} else {
this.errorMessage = _readable.readString(length);
}
}
this.resourceType = _readable.readByte();
{
int length;
length = _readable.readShort();
if (length < 0) {
throw new RuntimeException("non-nullable field resourceName was serialized as null");
} else if (length > 0x7fff) {
throw new RuntimeException("string field resourceName had invalid length " + length);
} else {
this.resourceName = _readable.readString(length);
}
}
{
int arrayLength;
arrayLength = _readable.readInt();
if (arrayLength < 0) {
throw new RuntimeException("non-nullable field configs was serialized as null");
} else {
ArrayList newCollection = new ArrayList(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(new DescribeConfigsResourceResult(_readable, _version));
}
this.configs = newCollection;
}
}
this._unknownTaggedFields = null;
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DescribeConfigsResult");
}
int _numTaggedFields = 0;
_writable.writeShort(errorCode);
if (errorMessage == null) {
_writable.writeShort((short) -1);
} else {
byte[] _stringBytes = _cache.getSerializedValue(errorMessage);
_writable.writeShort((short) _stringBytes.length);
_writable.writeByteArray(_stringBytes);
}
_writable.writeByte(resourceType);
{
byte[] _stringBytes = _cache.getSerializedValue(resourceName);
_writable.writeShort((short) _stringBytes.length);
_writable.writeByteArray(_stringBytes);
}
_writable.writeInt(configs.size());
for (DescribeConfigsResourceResult configsElement : configs) {
configsElement.write(_writable, _cache, _version);
}
RawTaggedFieldWriter _rawWriter = RawTaggedFieldWriter.forFields(_unknownTaggedFields);
_numTaggedFields += _rawWriter.numFields();
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
}
@Override
public void fromStruct(Struct struct, short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DescribeConfigsResult");
}
this._unknownTaggedFields = null;
this.errorCode = struct.getShort("error_code");
this.errorMessage = struct.getString("error_message");
this.resourceType = struct.getByte("resource_type");
this.resourceName = struct.getString("resource_name");
{
Object[] _nestedObjects = struct.getArray("configs");
this.configs = new ArrayList(_nestedObjects.length);
for (Object nestedObject : _nestedObjects) {
this.configs.add(new DescribeConfigsResourceResult((Struct) nestedObject, _version));
}
}
}
@Override
public Struct toStruct(short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DescribeConfigsResult");
}
Struct struct = new Struct(SCHEMAS[_version]);
struct.set("error_code", this.errorCode);
struct.set("error_message", this.errorMessage);
struct.set("resource_type", this.resourceType);
struct.set("resource_name", this.resourceName);
{
Struct[] _nestedObjects = new Struct[configs.size()];
int i = 0;
for (DescribeConfigsResourceResult element : this.configs) {
_nestedObjects[i++] = element.toStruct(_version);
}
struct.set("configs", (Object[]) _nestedObjects);
}
return struct;
}
@Override
public int size(ObjectSerializationCache _cache, short _version) {
int _size = 0, _numTaggedFields = 0;
if (_version > 2) {
throw new UnsupportedVersionException("Can't size version " + _version + " of DescribeConfigsResult");
}
_size += 2;
if (errorMessage == null) {
_size += 2;
} else {
byte[] _stringBytes = errorMessage.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'errorMessage' field is too long to be serialized");
}
_cache.cacheSerializedValue(errorMessage, _stringBytes);
_size += _stringBytes.length + 2;
}
_size += 1;
{
byte[] _stringBytes = resourceName.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'resourceName' field is too long to be serialized");
}
_cache.cacheSerializedValue(resourceName, _stringBytes);
_size += _stringBytes.length + 2;
}
{
int _arraySize = 0;
_arraySize += 4;
for (DescribeConfigsResourceResult configsElement : configs) {
_arraySize += configsElement.size(_cache, _version);
}
_size += _arraySize;
}
if (_unknownTaggedFields != null) {
_numTaggedFields += _unknownTaggedFields.size();
for (RawTaggedField _field : _unknownTaggedFields) {
_size += ByteUtils.sizeOfUnsignedVarint(_field.tag());
_size += ByteUtils.sizeOfUnsignedVarint(_field.size());
_size += _field.size();
}
}
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
return _size;
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof DescribeConfigsResult)) return false;
DescribeConfigsResult other = (DescribeConfigsResult) obj;
if (errorCode != other.errorCode) return false;
if (this.errorMessage == null) {
if (other.errorMessage != null) return false;
} else {
if (!this.errorMessage.equals(other.errorMessage)) return false;
}
if (resourceType != other.resourceType) return false;
if (this.resourceName == null) {
if (other.resourceName != null) return false;
} else {
if (!this.resourceName.equals(other.resourceName)) return false;
}
if (this.configs == null) {
if (other.configs != null) return false;
} else {
if (!this.configs.equals(other.configs)) return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 0;
hashCode = 31 * hashCode + errorCode;
hashCode = 31 * hashCode + (errorMessage == null ? 0 : errorMessage.hashCode());
hashCode = 31 * hashCode + resourceType;
hashCode = 31 * hashCode + (resourceName == null ? 0 : resourceName.hashCode());
hashCode = 31 * hashCode + (configs == null ? 0 : configs.hashCode());
return hashCode;
}
@Override
public String toString() {
return "DescribeConfigsResult("
+ "errorCode=" + errorCode
+ ", errorMessage=" + ((errorMessage == null) ? "null" : "'" + errorMessage.toString() + "'")
+ ", resourceType=" + resourceType
+ ", resourceName=" + ((resourceName == null) ? "null" : "'" + resourceName.toString() + "'")
+ ", configs=" + MessageUtil.deepToString(configs.iterator())
+ ")";
}
public short errorCode() {
return this.errorCode;
}
public String errorMessage() {
return this.errorMessage;
}
public byte resourceType() {
return this.resourceType;
}
public String resourceName() {
return this.resourceName;
}
public List configs() {
return this.configs;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public DescribeConfigsResult setErrorCode(short v) {
this.errorCode = v;
return this;
}
public DescribeConfigsResult setErrorMessage(String v) {
this.errorMessage = v;
return this;
}
public DescribeConfigsResult setResourceType(byte v) {
this.resourceType = v;
return this;
}
public DescribeConfigsResult setResourceName(String v) {
this.resourceName = v;
return this;
}
public DescribeConfigsResult setConfigs(List v) {
this.configs = v;
return this;
}
}
static public class DescribeConfigsResourceResult implements Message {
private String name;
private String value;
private boolean readOnly;
private boolean isDefault;
private byte configSource;
private boolean isSensitive;
private List synonyms;
private List _unknownTaggedFields;
public static final Schema SCHEMA_0 =
new Schema(
new Field("name", Type.STRING, "The configuration name."),
new Field("value", Type.NULLABLE_STRING, "The configuration value."),
new Field("read_only", Type.BOOLEAN, "True if the configuration is read-only."),
new Field("is_default", Type.BOOLEAN, "True if the configuration is not set."),
new Field("is_sensitive", Type.BOOLEAN, "True if this configuration is sensitive.")
);
public static final Schema SCHEMA_1 =
new Schema(
new Field("name", Type.STRING, "The configuration name."),
new Field("value", Type.NULLABLE_STRING, "The configuration value."),
new Field("read_only", Type.BOOLEAN, "True if the configuration is read-only."),
new Field("config_source", Type.INT8, "The configuration source."),
new Field("is_sensitive", Type.BOOLEAN, "True if this configuration is sensitive."),
new Field("synonyms", new ArrayOf(DescribeConfigsSynonym.SCHEMA_1), "The synonyms for this configuration key.")
);
public static final Schema SCHEMA_2 = SCHEMA_1;
public static final Schema[] SCHEMAS = new Schema[] {
SCHEMA_0,
SCHEMA_1,
SCHEMA_2
};
public DescribeConfigsResourceResult(Readable _readable, short _version) {
read(_readable, _version);
}
public DescribeConfigsResourceResult(Struct struct, short _version) {
fromStruct(struct, _version);
}
public DescribeConfigsResourceResult() {
this.name = "";
this.value = "";
this.readOnly = false;
this.isDefault = false;
this.configSource = (byte) -1;
this.isSensitive = false;
this.synonyms = new ArrayList();
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 2;
}
@Override
public void read(Readable _readable, short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DescribeConfigsResourceResult");
}
{
int length;
length = _readable.readShort();
if (length < 0) {
throw new RuntimeException("non-nullable field name was serialized as null");
} else if (length > 0x7fff) {
throw new RuntimeException("string field name had invalid length " + length);
} else {
this.name = _readable.readString(length);
}
}
{
int length;
length = _readable.readShort();
if (length < 0) {
this.value = null;
} else if (length > 0x7fff) {
throw new RuntimeException("string field value had invalid length " + length);
} else {
this.value = _readable.readString(length);
}
}
this.readOnly = _readable.readByte() != 0;
if (_version <= 0) {
this.isDefault = _readable.readByte() != 0;
} else {
this.isDefault = false;
}
if (_version >= 1) {
this.configSource = _readable.readByte();
} else {
this.configSource = (byte) -1;
}
this.isSensitive = _readable.readByte() != 0;
if (_version >= 1) {
int arrayLength;
arrayLength = _readable.readInt();
if (arrayLength < 0) {
throw new RuntimeException("non-nullable field synonyms was serialized as null");
} else {
ArrayList newCollection = new ArrayList(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(new DescribeConfigsSynonym(_readable, _version));
}
this.synonyms = newCollection;
}
} else {
this.synonyms = new ArrayList();
}
this._unknownTaggedFields = null;
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DescribeConfigsResourceResult");
}
int _numTaggedFields = 0;
{
byte[] _stringBytes = _cache.getSerializedValue(name);
_writable.writeShort((short) _stringBytes.length);
_writable.writeByteArray(_stringBytes);
}
if (value == null) {
_writable.writeShort((short) -1);
} else {
byte[] _stringBytes = _cache.getSerializedValue(value);
_writable.writeShort((short) _stringBytes.length);
_writable.writeByteArray(_stringBytes);
}
_writable.writeByte(readOnly ? (byte) 1 : (byte) 0);
if (_version <= 0) {
_writable.writeByte(isDefault ? (byte) 1 : (byte) 0);
} else {
if (isDefault) {
throw new UnsupportedVersionException("Attempted to write a non-default isDefault at version " + _version);
}
}
if (_version >= 1) {
_writable.writeByte(configSource);
}
_writable.writeByte(isSensitive ? (byte) 1 : (byte) 0);
if (_version >= 1) {
_writable.writeInt(synonyms.size());
for (DescribeConfigsSynonym synonymsElement : synonyms) {
synonymsElement.write(_writable, _cache, _version);
}
}
RawTaggedFieldWriter _rawWriter = RawTaggedFieldWriter.forFields(_unknownTaggedFields);
_numTaggedFields += _rawWriter.numFields();
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
}
@Override
public void fromStruct(Struct struct, short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DescribeConfigsResourceResult");
}
this._unknownTaggedFields = null;
this.name = struct.getString("name");
this.value = struct.getString("value");
this.readOnly = struct.getBoolean("read_only");
if (_version <= 0) {
this.isDefault = struct.getBoolean("is_default");
} else {
this.isDefault = false;
}
if (_version >= 1) {
this.configSource = struct.getByte("config_source");
} else {
this.configSource = (byte) -1;
}
this.isSensitive = struct.getBoolean("is_sensitive");
if (_version >= 1) {
Object[] _nestedObjects = struct.getArray("synonyms");
this.synonyms = new ArrayList(_nestedObjects.length);
for (Object nestedObject : _nestedObjects) {
this.synonyms.add(new DescribeConfigsSynonym((Struct) nestedObject, _version));
}
} else {
this.synonyms = new ArrayList();
}
}
@Override
public Struct toStruct(short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DescribeConfigsResourceResult");
}
Struct struct = new Struct(SCHEMAS[_version]);
struct.set("name", this.name);
struct.set("value", this.value);
struct.set("read_only", this.readOnly);
if (_version <= 0) {
struct.set("is_default", this.isDefault);
}
if (_version >= 1) {
struct.set("config_source", this.configSource);
}
struct.set("is_sensitive", this.isSensitive);
if (_version >= 1) {
Struct[] _nestedObjects = new Struct[synonyms.size()];
int i = 0;
for (DescribeConfigsSynonym element : this.synonyms) {
_nestedObjects[i++] = element.toStruct(_version);
}
struct.set("synonyms", (Object[]) _nestedObjects);
}
return struct;
}
@Override
public int size(ObjectSerializationCache _cache, short _version) {
int _size = 0, _numTaggedFields = 0;
if (_version > 2) {
throw new UnsupportedVersionException("Can't size version " + _version + " of DescribeConfigsResourceResult");
}
{
byte[] _stringBytes = name.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'name' field is too long to be serialized");
}
_cache.cacheSerializedValue(name, _stringBytes);
_size += _stringBytes.length + 2;
}
if (value == null) {
_size += 2;
} else {
byte[] _stringBytes = value.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'value' field is too long to be serialized");
}
_cache.cacheSerializedValue(value, _stringBytes);
_size += _stringBytes.length + 2;
}
_size += 1;
if (_version <= 0) {
_size += 1;
}
if (_version >= 1) {
_size += 1;
}
_size += 1;
if (_version >= 1) {
{
int _arraySize = 0;
_arraySize += 4;
for (DescribeConfigsSynonym synonymsElement : synonyms) {
_arraySize += synonymsElement.size(_cache, _version);
}
_size += _arraySize;
}
}
if (_unknownTaggedFields != null) {
_numTaggedFields += _unknownTaggedFields.size();
for (RawTaggedField _field : _unknownTaggedFields) {
_size += ByteUtils.sizeOfUnsignedVarint(_field.tag());
_size += ByteUtils.sizeOfUnsignedVarint(_field.size());
_size += _field.size();
}
}
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
return _size;
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof DescribeConfigsResourceResult)) return false;
DescribeConfigsResourceResult other = (DescribeConfigsResourceResult) obj;
if (this.name == null) {
if (other.name != null) return false;
} else {
if (!this.name.equals(other.name)) return false;
}
if (this.value == null) {
if (other.value != null) return false;
} else {
if (!this.value.equals(other.value)) return false;
}
if (readOnly != other.readOnly) return false;
if (isDefault != other.isDefault) return false;
if (configSource != other.configSource) return false;
if (isSensitive != other.isSensitive) return false;
if (this.synonyms == null) {
if (other.synonyms != null) return false;
} else {
if (!this.synonyms.equals(other.synonyms)) return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 0;
hashCode = 31 * hashCode + (name == null ? 0 : name.hashCode());
hashCode = 31 * hashCode + (value == null ? 0 : value.hashCode());
hashCode = 31 * hashCode + (readOnly ? 1231 : 1237);
hashCode = 31 * hashCode + (isDefault ? 1231 : 1237);
hashCode = 31 * hashCode + configSource;
hashCode = 31 * hashCode + (isSensitive ? 1231 : 1237);
hashCode = 31 * hashCode + (synonyms == null ? 0 : synonyms.hashCode());
return hashCode;
}
@Override
public String toString() {
return "DescribeConfigsResourceResult("
+ "name=" + ((name == null) ? "null" : "'" + name.toString() + "'")
+ ", value=" + ((value == null) ? "null" : "'" + value.toString() + "'")
+ ", readOnly=" + (readOnly ? "true" : "false")
+ ", isDefault=" + (isDefault ? "true" : "false")
+ ", configSource=" + configSource
+ ", isSensitive=" + (isSensitive ? "true" : "false")
+ ", synonyms=" + MessageUtil.deepToString(synonyms.iterator())
+ ")";
}
public String name() {
return this.name;
}
public String value() {
return this.value;
}
public boolean readOnly() {
return this.readOnly;
}
public boolean isDefault() {
return this.isDefault;
}
public byte configSource() {
return this.configSource;
}
public boolean isSensitive() {
return this.isSensitive;
}
public List synonyms() {
return this.synonyms;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public DescribeConfigsResourceResult setName(String v) {
this.name = v;
return this;
}
public DescribeConfigsResourceResult setValue(String v) {
this.value = v;
return this;
}
public DescribeConfigsResourceResult setReadOnly(boolean v) {
this.readOnly = v;
return this;
}
public DescribeConfigsResourceResult setIsDefault(boolean v) {
this.isDefault = v;
return this;
}
public DescribeConfigsResourceResult setConfigSource(byte v) {
this.configSource = v;
return this;
}
public DescribeConfigsResourceResult setIsSensitive(boolean v) {
this.isSensitive = v;
return this;
}
public DescribeConfigsResourceResult setSynonyms(List v) {
this.synonyms = v;
return this;
}
}
static public class DescribeConfigsSynonym implements Message {
private String name;
private String value;
private byte source;
private List _unknownTaggedFields;
public static final Schema SCHEMA_1 =
new Schema(
new Field("name", Type.STRING, "The synonym name."),
new Field("value", Type.NULLABLE_STRING, "The synonym value."),
new Field("source", Type.INT8, "The synonym source.")
);
public static final Schema SCHEMA_2 = SCHEMA_1;
public static final Schema[] SCHEMAS = new Schema[] {
null,
SCHEMA_1,
SCHEMA_2
};
public DescribeConfigsSynonym(Readable _readable, short _version) {
read(_readable, _version);
}
public DescribeConfigsSynonym(Struct struct, short _version) {
fromStruct(struct, _version);
}
public DescribeConfigsSynonym() {
this.name = "";
this.value = "";
this.source = (byte) 0;
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 2;
}
@Override
public void read(Readable _readable, short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DescribeConfigsSynonym");
}
{
int length;
length = _readable.readShort();
if (length < 0) {
throw new RuntimeException("non-nullable field name was serialized as null");
} else if (length > 0x7fff) {
throw new RuntimeException("string field name had invalid length " + length);
} else {
this.name = _readable.readString(length);
}
}
{
int length;
length = _readable.readShort();
if (length < 0) {
this.value = null;
} else if (length > 0x7fff) {
throw new RuntimeException("string field value had invalid length " + length);
} else {
this.value = _readable.readString(length);
}
}
this.source = _readable.readByte();
this._unknownTaggedFields = null;
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DescribeConfigsSynonym");
}
int _numTaggedFields = 0;
{
byte[] _stringBytes = _cache.getSerializedValue(name);
_writable.writeShort((short) _stringBytes.length);
_writable.writeByteArray(_stringBytes);
}
if (value == null) {
_writable.writeShort((short) -1);
} else {
byte[] _stringBytes = _cache.getSerializedValue(value);
_writable.writeShort((short) _stringBytes.length);
_writable.writeByteArray(_stringBytes);
}
_writable.writeByte(source);
RawTaggedFieldWriter _rawWriter = RawTaggedFieldWriter.forFields(_unknownTaggedFields);
_numTaggedFields += _rawWriter.numFields();
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
}
@Override
public void fromStruct(Struct struct, short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DescribeConfigsSynonym");
}
this._unknownTaggedFields = null;
this.name = struct.getString("name");
this.value = struct.getString("value");
this.source = struct.getByte("source");
}
@Override
public Struct toStruct(short _version) {
if (_version > 2) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DescribeConfigsSynonym");
}
Struct struct = new Struct(SCHEMAS[_version]);
struct.set("name", this.name);
struct.set("value", this.value);
struct.set("source", this.source);
return struct;
}
@Override
public int size(ObjectSerializationCache _cache, short _version) {
int _size = 0, _numTaggedFields = 0;
if (_version > 2) {
throw new UnsupportedVersionException("Can't size version " + _version + " of DescribeConfigsSynonym");
}
{
byte[] _stringBytes = name.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'name' field is too long to be serialized");
}
_cache.cacheSerializedValue(name, _stringBytes);
_size += _stringBytes.length + 2;
}
if (value == null) {
_size += 2;
} else {
byte[] _stringBytes = value.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'value' field is too long to be serialized");
}
_cache.cacheSerializedValue(value, _stringBytes);
_size += _stringBytes.length + 2;
}
_size += 1;
if (_unknownTaggedFields != null) {
_numTaggedFields += _unknownTaggedFields.size();
for (RawTaggedField _field : _unknownTaggedFields) {
_size += ByteUtils.sizeOfUnsignedVarint(_field.tag());
_size += ByteUtils.sizeOfUnsignedVarint(_field.size());
_size += _field.size();
}
}
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
return _size;
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof DescribeConfigsSynonym)) return false;
DescribeConfigsSynonym other = (DescribeConfigsSynonym) obj;
if (this.name == null) {
if (other.name != null) return false;
} else {
if (!this.name.equals(other.name)) return false;
}
if (this.value == null) {
if (other.value != null) return false;
} else {
if (!this.value.equals(other.value)) return false;
}
if (source != other.source) return false;
return true;
}
@Override
public int hashCode() {
int hashCode = 0;
hashCode = 31 * hashCode + (name == null ? 0 : name.hashCode());
hashCode = 31 * hashCode + (value == null ? 0 : value.hashCode());
hashCode = 31 * hashCode + source;
return hashCode;
}
@Override
public String toString() {
return "DescribeConfigsSynonym("
+ "name=" + ((name == null) ? "null" : "'" + name.toString() + "'")
+ ", value=" + ((value == null) ? "null" : "'" + value.toString() + "'")
+ ", source=" + source
+ ")";
}
public String name() {
return this.name;
}
public String value() {
return this.value;
}
public byte source() {
return this.source;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public DescribeConfigsSynonym setName(String v) {
this.name = v;
return this;
}
public DescribeConfigsSynonym setValue(String v) {
this.value = v;
return this;
}
public DescribeConfigsSynonym setSource(byte v) {
this.source = v;
return this;
}
}
}