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.
/*
* 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 com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.DoubleNode;
import com.fasterxml.jackson.databind.node.IntNode;
import com.fasterxml.jackson.databind.node.JsonNodeFactory;
import com.fasterxml.jackson.databind.node.NullNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.fasterxml.jackson.databind.node.ShortNode;
import com.fasterxml.jackson.databind.node.TextNode;
import java.util.ArrayList;
import org.apache.kafka.common.protocol.MessageUtil;
import static org.apache.kafka.common.message.DescribeClientQuotasResponseData.*;
public class DescribeClientQuotasResponseDataJsonConverter {
public static DescribeClientQuotasResponseData read(JsonNode _node, short _version) {
DescribeClientQuotasResponseData _object = new DescribeClientQuotasResponseData();
JsonNode _throttleTimeMsNode = _node.get("throttleTimeMs");
if (_throttleTimeMsNode == null) {
throw new RuntimeException("DescribeClientQuotasResponseData: unable to locate field 'throttleTimeMs', which is mandatory in version " + _version);
} else {
_object.throttleTimeMs = MessageUtil.jsonNodeToInt(_throttleTimeMsNode, "DescribeClientQuotasResponseData");
}
JsonNode _errorCodeNode = _node.get("errorCode");
if (_errorCodeNode == null) {
throw new RuntimeException("DescribeClientQuotasResponseData: unable to locate field 'errorCode', which is mandatory in version " + _version);
} else {
_object.errorCode = MessageUtil.jsonNodeToShort(_errorCodeNode, "DescribeClientQuotasResponseData");
}
JsonNode _errorMessageNode = _node.get("errorMessage");
if (_errorMessageNode == null) {
throw new RuntimeException("DescribeClientQuotasResponseData: unable to locate field 'errorMessage', which is mandatory in version " + _version);
} else {
if (_errorMessageNode.isNull()) {
_object.errorMessage = null;
} else {
if (!_errorMessageNode.isTextual()) {
throw new RuntimeException("DescribeClientQuotasResponseData expected a string type, but got " + _node.getNodeType());
}
_object.errorMessage = _errorMessageNode.asText();
}
}
JsonNode _entriesNode = _node.get("entries");
if (_entriesNode == null) {
throw new RuntimeException("DescribeClientQuotasResponseData: unable to locate field 'entries', which is mandatory in version " + _version);
} else {
if (_entriesNode.isNull()) {
_object.entries = null;
} else {
if (!_entriesNode.isArray()) {
throw new RuntimeException("DescribeClientQuotasResponseData expected a JSON array, but got " + _node.getNodeType());
}
ArrayList _collection = new ArrayList(_entriesNode.size());
_object.entries = _collection;
for (JsonNode _element : _entriesNode) {
_collection.add(EntryDataJsonConverter.read(_element, _version));
}
}
}
return _object;
}
public static JsonNode write(DescribeClientQuotasResponseData _object, short _version, boolean _serializeRecords) {
ObjectNode _node = new ObjectNode(JsonNodeFactory.instance);
_node.set("throttleTimeMs", new IntNode(_object.throttleTimeMs));
_node.set("errorCode", new ShortNode(_object.errorCode));
if (_object.errorMessage == null) {
_node.set("errorMessage", NullNode.instance);
} else {
_node.set("errorMessage", new TextNode(_object.errorMessage));
}
if (_object.entries == null) {
_node.set("entries", NullNode.instance);
} else {
ArrayNode _entriesArray = new ArrayNode(JsonNodeFactory.instance);
for (EntryData _element : _object.entries) {
_entriesArray.add(EntryDataJsonConverter.write(_element, _version, _serializeRecords));
}
_node.set("entries", _entriesArray);
}
return _node;
}
public static JsonNode write(DescribeClientQuotasResponseData _object, short _version) {
return write(_object, _version, true);
}
public static class EntityDataJsonConverter {
public static EntityData read(JsonNode _node, short _version) {
EntityData _object = new EntityData();
JsonNode _entityTypeNode = _node.get("entityType");
if (_entityTypeNode == null) {
throw new RuntimeException("EntityData: unable to locate field 'entityType', which is mandatory in version " + _version);
} else {
if (!_entityTypeNode.isTextual()) {
throw new RuntimeException("EntityData expected a string type, but got " + _node.getNodeType());
}
_object.entityType = _entityTypeNode.asText();
}
JsonNode _entityNameNode = _node.get("entityName");
if (_entityNameNode == null) {
throw new RuntimeException("EntityData: unable to locate field 'entityName', which is mandatory in version " + _version);
} else {
if (_entityNameNode.isNull()) {
_object.entityName = null;
} else {
if (!_entityNameNode.isTextual()) {
throw new RuntimeException("EntityData expected a string type, but got " + _node.getNodeType());
}
_object.entityName = _entityNameNode.asText();
}
}
return _object;
}
public static JsonNode write(EntityData _object, short _version, boolean _serializeRecords) {
ObjectNode _node = new ObjectNode(JsonNodeFactory.instance);
_node.set("entityType", new TextNode(_object.entityType));
if (_object.entityName == null) {
_node.set("entityName", NullNode.instance);
} else {
_node.set("entityName", new TextNode(_object.entityName));
}
return _node;
}
public static JsonNode write(EntityData _object, short _version) {
return write(_object, _version, true);
}
}
public static class EntryDataJsonConverter {
public static EntryData read(JsonNode _node, short _version) {
EntryData _object = new EntryData();
JsonNode _entityNode = _node.get("entity");
if (_entityNode == null) {
throw new RuntimeException("EntryData: unable to locate field 'entity', which is mandatory in version " + _version);
} else {
if (!_entityNode.isArray()) {
throw new RuntimeException("EntryData expected a JSON array, but got " + _node.getNodeType());
}
ArrayList _collection = new ArrayList(_entityNode.size());
_object.entity = _collection;
for (JsonNode _element : _entityNode) {
_collection.add(EntityDataJsonConverter.read(_element, _version));
}
}
JsonNode _valuesNode = _node.get("values");
if (_valuesNode == null) {
throw new RuntimeException("EntryData: unable to locate field 'values', which is mandatory in version " + _version);
} else {
if (!_valuesNode.isArray()) {
throw new RuntimeException("EntryData expected a JSON array, but got " + _node.getNodeType());
}
ArrayList _collection = new ArrayList(_valuesNode.size());
_object.values = _collection;
for (JsonNode _element : _valuesNode) {
_collection.add(ValueDataJsonConverter.read(_element, _version));
}
}
return _object;
}
public static JsonNode write(EntryData _object, short _version, boolean _serializeRecords) {
ObjectNode _node = new ObjectNode(JsonNodeFactory.instance);
ArrayNode _entityArray = new ArrayNode(JsonNodeFactory.instance);
for (EntityData _element : _object.entity) {
_entityArray.add(EntityDataJsonConverter.write(_element, _version, _serializeRecords));
}
_node.set("entity", _entityArray);
ArrayNode _valuesArray = new ArrayNode(JsonNodeFactory.instance);
for (ValueData _element : _object.values) {
_valuesArray.add(ValueDataJsonConverter.write(_element, _version, _serializeRecords));
}
_node.set("values", _valuesArray);
return _node;
}
public static JsonNode write(EntryData _object, short _version) {
return write(_object, _version, true);
}
}
public static class ValueDataJsonConverter {
public static ValueData read(JsonNode _node, short _version) {
ValueData _object = new ValueData();
JsonNode _keyNode = _node.get("key");
if (_keyNode == null) {
throw new RuntimeException("ValueData: unable to locate field 'key', which is mandatory in version " + _version);
} else {
if (!_keyNode.isTextual()) {
throw new RuntimeException("ValueData expected a string type, but got " + _node.getNodeType());
}
_object.key = _keyNode.asText();
}
JsonNode _valueNode = _node.get("value");
if (_valueNode == null) {
throw new RuntimeException("ValueData: unable to locate field 'value', which is mandatory in version " + _version);
} else {
_object.value = MessageUtil.jsonNodeToDouble(_valueNode, "ValueData");
}
return _object;
}
public static JsonNode write(ValueData _object, short _version, boolean _serializeRecords) {
ObjectNode _node = new ObjectNode(JsonNodeFactory.instance);
_node.set("key", new TextNode(_object.key));
_node.set("value", new DoubleNode(_object.value));
return _node;
}
public static JsonNode write(ValueData _object, short _version) {
return write(_object, _version, true);
}
}
}