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 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 DeleteAclsResponseData implements ApiMessage {
private int throttleTimeMs;
private List filterResults;
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("filter_results", new ArrayOf(DeleteAclsFilterResult.SCHEMA_0), "The results for each filter.")
);
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("filter_results", new ArrayOf(DeleteAclsFilterResult.SCHEMA_1), "The results for each filter.")
);
public static final Schema[] SCHEMAS = new Schema[] {
SCHEMA_0,
SCHEMA_1
};
public DeleteAclsResponseData(Readable _readable, short _version) {
read(_readable, _version);
}
public DeleteAclsResponseData(Struct struct, short _version) {
fromStruct(struct, _version);
}
public DeleteAclsResponseData() {
this.throttleTimeMs = 0;
this.filterResults = new ArrayList();
}
@Override
public short apiKey() {
return 31;
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 1;
}
@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 filterResults was serialized as null");
} else {
ArrayList newCollection = new ArrayList(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(new DeleteAclsFilterResult(_readable, _version));
}
this.filterResults = newCollection;
}
}
this._unknownTaggedFields = null;
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
int _numTaggedFields = 0;
_writable.writeInt(throttleTimeMs);
_writable.writeInt(filterResults.size());
for (DeleteAclsFilterResult filterResultsElement : filterResults) {
filterResultsElement.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("filter_results");
this.filterResults = new ArrayList(_nestedObjects.length);
for (Object nestedObject : _nestedObjects) {
this.filterResults.add(new DeleteAclsFilterResult((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[filterResults.size()];
int i = 0;
for (DeleteAclsFilterResult element : this.filterResults) {
_nestedObjects[i++] = element.toStruct(_version);
}
struct.set("filter_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 (DeleteAclsFilterResult filterResultsElement : filterResults) {
_arraySize += filterResultsElement.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 DeleteAclsResponseData)) return false;
DeleteAclsResponseData other = (DeleteAclsResponseData) obj;
if (throttleTimeMs != other.throttleTimeMs) return false;
if (this.filterResults == null) {
if (other.filterResults != null) return false;
} else {
if (!this.filterResults.equals(other.filterResults)) return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 0;
hashCode = 31 * hashCode + throttleTimeMs;
hashCode = 31 * hashCode + (filterResults == null ? 0 : filterResults.hashCode());
return hashCode;
}
@Override
public String toString() {
return "DeleteAclsResponseData("
+ "throttleTimeMs=" + throttleTimeMs
+ ", filterResults=" + MessageUtil.deepToString(filterResults.iterator())
+ ")";
}
public int throttleTimeMs() {
return this.throttleTimeMs;
}
public List filterResults() {
return this.filterResults;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public DeleteAclsResponseData setThrottleTimeMs(int v) {
this.throttleTimeMs = v;
return this;
}
public DeleteAclsResponseData setFilterResults(List v) {
this.filterResults = v;
return this;
}
static public class DeleteAclsFilterResult implements Message {
private short errorCode;
private String errorMessage;
private List matchingAcls;
private List _unknownTaggedFields;
public static final Schema SCHEMA_0 =
new Schema(
new Field("error_code", Type.INT16, "The error code, or 0 if the filter succeeded."),
new Field("error_message", Type.NULLABLE_STRING, "The error message, or null if the filter succeeded."),
new Field("matching_acls", new ArrayOf(DeleteAclsMatchingAcl.SCHEMA_0), "The ACLs which matched this filter.")
);
public static final Schema SCHEMA_1 =
new Schema(
new Field("error_code", Type.INT16, "The error code, or 0 if the filter succeeded."),
new Field("error_message", Type.NULLABLE_STRING, "The error message, or null if the filter succeeded."),
new Field("matching_acls", new ArrayOf(DeleteAclsMatchingAcl.SCHEMA_1), "The ACLs which matched this filter.")
);
public static final Schema[] SCHEMAS = new Schema[] {
SCHEMA_0,
SCHEMA_1
};
public DeleteAclsFilterResult(Readable _readable, short _version) {
read(_readable, _version);
}
public DeleteAclsFilterResult(Struct struct, short _version) {
fromStruct(struct, _version);
}
public DeleteAclsFilterResult() {
this.errorCode = (short) 0;
this.errorMessage = "";
this.matchingAcls = new ArrayList();
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 1;
}
@Override
public void read(Readable _readable, short _version) {
if (_version > 1) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DeleteAclsFilterResult");
}
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);
}
}
{
int arrayLength;
arrayLength = _readable.readInt();
if (arrayLength < 0) {
throw new RuntimeException("non-nullable field matchingAcls was serialized as null");
} else {
ArrayList newCollection = new ArrayList(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(new DeleteAclsMatchingAcl(_readable, _version));
}
this.matchingAcls = newCollection;
}
}
this._unknownTaggedFields = null;
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
if (_version > 1) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DeleteAclsFilterResult");
}
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.writeInt(matchingAcls.size());
for (DeleteAclsMatchingAcl matchingAclsElement : matchingAcls) {
matchingAclsElement.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 > 1) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DeleteAclsFilterResult");
}
this._unknownTaggedFields = null;
this.errorCode = struct.getShort("error_code");
this.errorMessage = struct.getString("error_message");
{
Object[] _nestedObjects = struct.getArray("matching_acls");
this.matchingAcls = new ArrayList(_nestedObjects.length);
for (Object nestedObject : _nestedObjects) {
this.matchingAcls.add(new DeleteAclsMatchingAcl((Struct) nestedObject, _version));
}
}
}
@Override
public Struct toStruct(short _version) {
if (_version > 1) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DeleteAclsFilterResult");
}
Struct struct = new Struct(SCHEMAS[_version]);
struct.set("error_code", this.errorCode);
struct.set("error_message", this.errorMessage);
{
Struct[] _nestedObjects = new Struct[matchingAcls.size()];
int i = 0;
for (DeleteAclsMatchingAcl element : this.matchingAcls) {
_nestedObjects[i++] = element.toStruct(_version);
}
struct.set("matching_acls", (Object[]) _nestedObjects);
}
return struct;
}
@Override
public int size(ObjectSerializationCache _cache, short _version) {
int _size = 0, _numTaggedFields = 0;
if (_version > 1) {
throw new UnsupportedVersionException("Can't size version " + _version + " of DeleteAclsFilterResult");
}
_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;
}
{
int _arraySize = 0;
_arraySize += 4;
for (DeleteAclsMatchingAcl matchingAclsElement : matchingAcls) {
_arraySize += matchingAclsElement.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 DeleteAclsFilterResult)) return false;
DeleteAclsFilterResult other = (DeleteAclsFilterResult) 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 (this.matchingAcls == null) {
if (other.matchingAcls != null) return false;
} else {
if (!this.matchingAcls.equals(other.matchingAcls)) 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 + (matchingAcls == null ? 0 : matchingAcls.hashCode());
return hashCode;
}
@Override
public String toString() {
return "DeleteAclsFilterResult("
+ "errorCode=" + errorCode
+ ", errorMessage=" + ((errorMessage == null) ? "null" : "'" + errorMessage.toString() + "'")
+ ", matchingAcls=" + MessageUtil.deepToString(matchingAcls.iterator())
+ ")";
}
public short errorCode() {
return this.errorCode;
}
public String errorMessage() {
return this.errorMessage;
}
public List matchingAcls() {
return this.matchingAcls;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public DeleteAclsFilterResult setErrorCode(short v) {
this.errorCode = v;
return this;
}
public DeleteAclsFilterResult setErrorMessage(String v) {
this.errorMessage = v;
return this;
}
public DeleteAclsFilterResult setMatchingAcls(List v) {
this.matchingAcls = v;
return this;
}
}
static public class DeleteAclsMatchingAcl implements Message {
private short errorCode;
private String errorMessage;
private byte resourceType;
private String resourceName;
private byte patternType;
private String principal;
private String host;
private byte operation;
private byte permissionType;
private List _unknownTaggedFields;
public static final Schema SCHEMA_0 =
new Schema(
new Field("error_code", Type.INT16, "The deletion error code, or 0 if the deletion succeeded."),
new Field("error_message", Type.NULLABLE_STRING, "The deletion error message, or null if the deletion succeeded."),
new Field("resource_type", Type.INT8, "The ACL resource type."),
new Field("resource_name", Type.STRING, "The ACL resource name."),
new Field("principal", Type.STRING, "The ACL principal."),
new Field("host", Type.STRING, "The ACL host."),
new Field("operation", Type.INT8, "The ACL operation."),
new Field("permission_type", Type.INT8, "The ACL permission type.")
);
public static final Schema SCHEMA_1 =
new Schema(
new Field("error_code", Type.INT16, "The deletion error code, or 0 if the deletion succeeded."),
new Field("error_message", Type.NULLABLE_STRING, "The deletion error message, or null if the deletion succeeded."),
new Field("resource_type", Type.INT8, "The ACL resource type."),
new Field("resource_name", Type.STRING, "The ACL resource name."),
new Field("pattern_type", Type.INT8, "The ACL resource pattern type."),
new Field("principal", Type.STRING, "The ACL principal."),
new Field("host", Type.STRING, "The ACL host."),
new Field("operation", Type.INT8, "The ACL operation."),
new Field("permission_type", Type.INT8, "The ACL permission type.")
);
public static final Schema[] SCHEMAS = new Schema[] {
SCHEMA_0,
SCHEMA_1
};
public DeleteAclsMatchingAcl(Readable _readable, short _version) {
read(_readable, _version);
}
public DeleteAclsMatchingAcl(Struct struct, short _version) {
fromStruct(struct, _version);
}
public DeleteAclsMatchingAcl() {
this.errorCode = (short) 0;
this.errorMessage = "";
this.resourceType = (byte) 0;
this.resourceName = "";
this.patternType = (byte) 3;
this.principal = "";
this.host = "";
this.operation = (byte) 0;
this.permissionType = (byte) 0;
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 1;
}
@Override
public void read(Readable _readable, short _version) {
if (_version > 1) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DeleteAclsMatchingAcl");
}
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);
}
}
if (_version >= 1) {
this.patternType = _readable.readByte();
} else {
this.patternType = (byte) 3;
}
{
int length;
length = _readable.readShort();
if (length < 0) {
throw new RuntimeException("non-nullable field principal was serialized as null");
} else if (length > 0x7fff) {
throw new RuntimeException("string field principal had invalid length " + length);
} else {
this.principal = _readable.readString(length);
}
}
{
int length;
length = _readable.readShort();
if (length < 0) {
throw new RuntimeException("non-nullable field host was serialized as null");
} else if (length > 0x7fff) {
throw new RuntimeException("string field host had invalid length " + length);
} else {
this.host = _readable.readString(length);
}
}
this.operation = _readable.readByte();
this.permissionType = _readable.readByte();
this._unknownTaggedFields = null;
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
if (_version > 1) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DeleteAclsMatchingAcl");
}
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);
}
if (_version >= 1) {
_writable.writeByte(patternType);
} else {
if (patternType != (byte) 3) {
throw new UnsupportedVersionException("Attempted to write a non-default patternType at version " + _version);
}
}
{
byte[] _stringBytes = _cache.getSerializedValue(principal);
_writable.writeShort((short) _stringBytes.length);
_writable.writeByteArray(_stringBytes);
}
{
byte[] _stringBytes = _cache.getSerializedValue(host);
_writable.writeShort((short) _stringBytes.length);
_writable.writeByteArray(_stringBytes);
}
_writable.writeByte(operation);
_writable.writeByte(permissionType);
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 > 1) {
throw new UnsupportedVersionException("Can't read version " + _version + " of DeleteAclsMatchingAcl");
}
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");
if (_version >= 1) {
this.patternType = struct.getByte("pattern_type");
} else {
this.patternType = (byte) 3;
}
this.principal = struct.getString("principal");
this.host = struct.getString("host");
this.operation = struct.getByte("operation");
this.permissionType = struct.getByte("permission_type");
}
@Override
public Struct toStruct(short _version) {
if (_version > 1) {
throw new UnsupportedVersionException("Can't write version " + _version + " of DeleteAclsMatchingAcl");
}
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);
if (_version >= 1) {
struct.set("pattern_type", this.patternType);
}
struct.set("principal", this.principal);
struct.set("host", this.host);
struct.set("operation", this.operation);
struct.set("permission_type", this.permissionType);
return struct;
}
@Override
public int size(ObjectSerializationCache _cache, short _version) {
int _size = 0, _numTaggedFields = 0;
if (_version > 1) {
throw new UnsupportedVersionException("Can't size version " + _version + " of DeleteAclsMatchingAcl");
}
_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;
}
if (_version >= 1) {
_size += 1;
}
{
byte[] _stringBytes = principal.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'principal' field is too long to be serialized");
}
_cache.cacheSerializedValue(principal, _stringBytes);
_size += _stringBytes.length + 2;
}
{
byte[] _stringBytes = host.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'host' field is too long to be serialized");
}
_cache.cacheSerializedValue(host, _stringBytes);
_size += _stringBytes.length + 2;
}
_size += 1;
_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 DeleteAclsMatchingAcl)) return false;
DeleteAclsMatchingAcl other = (DeleteAclsMatchingAcl) 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 (patternType != other.patternType) return false;
if (this.principal == null) {
if (other.principal != null) return false;
} else {
if (!this.principal.equals(other.principal)) return false;
}
if (this.host == null) {
if (other.host != null) return false;
} else {
if (!this.host.equals(other.host)) return false;
}
if (operation != other.operation) return false;
if (permissionType != other.permissionType) 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 + patternType;
hashCode = 31 * hashCode + (principal == null ? 0 : principal.hashCode());
hashCode = 31 * hashCode + (host == null ? 0 : host.hashCode());
hashCode = 31 * hashCode + operation;
hashCode = 31 * hashCode + permissionType;
return hashCode;
}
@Override
public String toString() {
return "DeleteAclsMatchingAcl("
+ "errorCode=" + errorCode
+ ", errorMessage=" + ((errorMessage == null) ? "null" : "'" + errorMessage.toString() + "'")
+ ", resourceType=" + resourceType
+ ", resourceName=" + ((resourceName == null) ? "null" : "'" + resourceName.toString() + "'")
+ ", patternType=" + patternType
+ ", principal=" + ((principal == null) ? "null" : "'" + principal.toString() + "'")
+ ", host=" + ((host == null) ? "null" : "'" + host.toString() + "'")
+ ", operation=" + operation
+ ", permissionType=" + permissionType
+ ")";
}
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 byte patternType() {
return this.patternType;
}
public String principal() {
return this.principal;
}
public String host() {
return this.host;
}
public byte operation() {
return this.operation;
}
public byte permissionType() {
return this.permissionType;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public DeleteAclsMatchingAcl setErrorCode(short v) {
this.errorCode = v;
return this;
}
public DeleteAclsMatchingAcl setErrorMessage(String v) {
this.errorMessage = v;
return this;
}
public DeleteAclsMatchingAcl setResourceType(byte v) {
this.resourceType = v;
return this;
}
public DeleteAclsMatchingAcl setResourceName(String v) {
this.resourceName = v;
return this;
}
public DeleteAclsMatchingAcl setPatternType(byte v) {
this.patternType = v;
return this;
}
public DeleteAclsMatchingAcl setPrincipal(String v) {
this.principal = v;
return this;
}
public DeleteAclsMatchingAcl setHost(String v) {
this.host = v;
return this;
}
public DeleteAclsMatchingAcl setOperation(byte v) {
this.operation = v;
return this;
}
public DeleteAclsMatchingAcl setPermissionType(byte v) {
this.permissionType = v;
return this;
}
}
}