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.
/*
* Copyright 2020 Google LLC
*
* Licensed 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
*
* https://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.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/rpc/error_details.proto
package com.alibaba.nacos.shaded.com.google.rpc;
/**
*
*
*
* Describes the cause of the error with structured details.
* Example of an error when contacting the "pubsub.googleapis.com" API when it
* is not enabled:
* { "reason": "API_DISABLED"
* "domain": "googleapis.com"
* "metadata": {
* "resource": "projects/123",
* "service": "pubsub.googleapis.com"
* }
* }
* This response indicates that the pubsub.googleapis.com API is not enabled.
* Example of an error that is returned when attempting to create a Spanner
* instance in a region that is out of stock:
* { "reason": "STOCKOUT"
* "domain": "spanner.googleapis.com",
* "metadata": {
* "availableRegions": "us-central1,us-east2"
* }
* }
*
*
* Protobuf type {@code google.rpc.ErrorInfo}
*/
public final class ErrorInfo extends com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.rpc.ErrorInfo)
ErrorInfoOrBuilder {
private static final long serialVersionUID = 0L;
// Use ErrorInfo.newBuilder() to construct.
private ErrorInfo(com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ErrorInfo() {
reason_ = "";
domain_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new ErrorInfo();
}
@java.lang.Override
public final com.alibaba.nacos.shaded.com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
public static final com.alibaba.nacos.shaded.com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.alibaba.nacos.shaded.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_ErrorInfo_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.alibaba.nacos.shaded.com.google.protobuf.MapField internalGetMapField(int number) {
switch (number) {
case 3:
return internalGetMetadata();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.alibaba.nacos.shaded.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_ErrorInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo.class, com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo.Builder.class);
}
public static final int REASON_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object reason_ = "";
/**
*
*
*
* The reason of the error. This is a constant value that identifies the
* proximate cause of the error. Error reasons are unique within a particular
* domain of errors. This should be at most 63 characters and match a
* regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents
* UPPER_SNAKE_CASE.
*
* The reason of the error. This is a constant value that identifies the
* proximate cause of the error. Error reasons are unique within a particular
* domain of errors. This should be at most 63 characters and match a
* regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents
* UPPER_SNAKE_CASE.
*
*
* string reason = 1;
*
* @return The bytes for reason.
*/
@java.lang.Override
public com.alibaba.nacos.shaded.com.google.protobuf.ByteString getReasonBytes() {
java.lang.Object ref = reason_;
if (ref instanceof java.lang.String) {
com.alibaba.nacos.shaded.com.google.protobuf.ByteString b =
com.alibaba.nacos.shaded.com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
reason_ = b;
return b;
} else {
return (com.alibaba.nacos.shaded.com.google.protobuf.ByteString) ref;
}
}
public static final int DOMAIN_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object domain_ = "";
/**
*
*
*
* The logical grouping to which the "reason" belongs. The error domain
* is typically the registered service name of the tool or product that
* generates the error. Example: "pubsub.googleapis.com". If the error is
* generated by some common infrastructure, the error domain must be a
* globally unique value that identifies the infrastructure. For Google API
* infrastructure, the error domain is "googleapis.com".
*
* The logical grouping to which the "reason" belongs. The error domain
* is typically the registered service name of the tool or product that
* generates the error. Example: "pubsub.googleapis.com". If the error is
* generated by some common infrastructure, the error domain must be a
* globally unique value that identifies the infrastructure. For Google API
* infrastructure, the error domain is "googleapis.com".
*
*
* string domain = 2;
*
* @return The bytes for domain.
*/
@java.lang.Override
public com.alibaba.nacos.shaded.com.google.protobuf.ByteString getDomainBytes() {
java.lang.Object ref = domain_;
if (ref instanceof java.lang.String) {
com.alibaba.nacos.shaded.com.google.protobuf.ByteString b =
com.alibaba.nacos.shaded.com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
domain_ = b;
return b;
} else {
return (com.alibaba.nacos.shaded.com.google.protobuf.ByteString) ref;
}
}
public static final int METADATA_FIELD_NUMBER = 3;
private static final class MetadataDefaultEntryHolder {
static final com.alibaba.nacos.shaded.com.google.protobuf.MapEntry defaultEntry =
com.alibaba.nacos.shaded.com.google.protobuf.MapEntry.newDefaultInstance(
com.alibaba.nacos.shaded.com.google.rpc.ErrorDetailsProto
.internal_static_google_rpc_ErrorInfo_MetadataEntry_descriptor,
com.alibaba.nacos.shaded.com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.alibaba.nacos.shaded.com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
@SuppressWarnings("serial")
private com.alibaba.nacos.shaded.com.google.protobuf.MapField metadata_;
private com.alibaba.nacos.shaded.com.google.protobuf.MapField internalGetMetadata() {
if (metadata_ == null) {
return com.alibaba.nacos.shaded.com.google.protobuf.MapField.emptyMapField(MetadataDefaultEntryHolder.defaultEntry);
}
return metadata_;
}
public int getMetadataCount() {
return internalGetMetadata().getMap().size();
}
/**
*
*
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
*
* map<string, string> metadata = 3;
*/
@java.lang.Override
public boolean containsMetadata(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
return internalGetMetadata().getMap().containsKey(key);
}
/** Use {@link #getMetadataMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getMetadata() {
return getMetadataMap();
}
/**
*
*
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
*
* map<string, string> metadata = 3;
*/
@java.lang.Override
public java.lang.String getMetadataOrThrow(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetMetadata().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.alibaba.nacos.shaded.com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.isStringEmpty(reason_)) {
com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.writeString(output, 1, reason_);
}
if (!com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.isStringEmpty(domain_)) {
com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.writeString(output, 2, domain_);
}
com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
output, internalGetMetadata(), MetadataDefaultEntryHolder.defaultEntry, 3);
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.isStringEmpty(reason_)) {
size += com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.computeStringSize(1, reason_);
}
if (!com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.isStringEmpty(domain_)) {
size += com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.computeStringSize(2, domain_);
}
for (java.util.Map.Entry entry :
internalGetMetadata().getMap().entrySet()) {
com.alibaba.nacos.shaded.com.google.protobuf.MapEntry metadata__ =
MetadataDefaultEntryHolder.defaultEntry
.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.alibaba.nacos.shaded.com.google.protobuf.CodedOutputStream.computeMessageSize(3, metadata__);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo)) {
return super.equals(obj);
}
com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo other = (com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo) obj;
if (!getReason().equals(other.getReason())) return false;
if (!getDomain().equals(other.getDomain())) return false;
if (!internalGetMetadata().equals(other.internalGetMetadata())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + REASON_FIELD_NUMBER;
hash = (53 * hash) + getReason().hashCode();
hash = (37 * hash) + DOMAIN_FIELD_NUMBER;
hash = (53 * hash) + getDomain().hashCode();
if (!internalGetMetadata().getMap().isEmpty()) {
hash = (37 * hash) + METADATA_FIELD_NUMBER;
hash = (53 * hash) + internalGetMetadata().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(java.nio.ByteBuffer data)
throws com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(
java.nio.ByteBuffer data, com.alibaba.nacos.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(com.alibaba.nacos.shaded.com.google.protobuf.ByteString data)
throws com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(
com.alibaba.nacos.shaded.com.google.protobuf.ByteString data,
com.alibaba.nacos.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(byte[] data)
throws com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(
byte[] data, com.alibaba.nacos.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(
java.io.InputStream input, com.alibaba.nacos.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseDelimitedFrom(
java.io.InputStream input, com.alibaba.nacos.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(com.alibaba.nacos.shaded.com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo parseFrom(
com.alibaba.nacos.shaded.com.google.protobuf.CodedInputStream input,
com.alibaba.nacos.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Describes the cause of the error with structured details.
* Example of an error when contacting the "pubsub.googleapis.com" API when it
* is not enabled:
* { "reason": "API_DISABLED"
* "domain": "googleapis.com"
* "metadata": {
* "resource": "projects/123",
* "service": "pubsub.googleapis.com"
* }
* }
* This response indicates that the pubsub.googleapis.com API is not enabled.
* Example of an error that is returned when attempting to create a Spanner
* instance in a region that is out of stock:
* { "reason": "STOCKOUT"
* "domain": "spanner.googleapis.com",
* "metadata": {
* "availableRegions": "us-central1,us-east2"
* }
* }
*
*
* Protobuf type {@code google.rpc.ErrorInfo}
*/
public static final class Builder extends com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.rpc.ErrorInfo)
com.alibaba.nacos.shaded.com.google.rpc.ErrorInfoOrBuilder {
public static final com.alibaba.nacos.shaded.com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.alibaba.nacos.shaded.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_ErrorInfo_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.alibaba.nacos.shaded.com.google.protobuf.MapField internalGetMapField(int number) {
switch (number) {
case 3:
return internalGetMetadata();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.alibaba.nacos.shaded.com.google.protobuf.MapField internalGetMutableMapField(int number) {
switch (number) {
case 3:
return internalGetMutableMetadata();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.alibaba.nacos.shaded.com.google.rpc.ErrorDetailsProto
.internal_static_google_rpc_ErrorInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo.class, com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo.Builder.class);
}
// Construct using com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo.newBuilder()
private Builder() {}
private Builder(com.alibaba.nacos.shaded.com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
reason_ = "";
domain_ = "";
internalGetMutableMetadata().clear();
return this;
}
@java.lang.Override
public com.alibaba.nacos.shaded.com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.alibaba.nacos.shaded.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_ErrorInfo_descriptor;
}
@java.lang.Override
public com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo getDefaultInstanceForType() {
return com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo.getDefaultInstance();
}
@java.lang.Override
public com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo build() {
com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo buildPartial() {
com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo result = new com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.reason_ = reason_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.domain_ = domain_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.metadata_ = internalGetMetadata();
result.metadata_.makeImmutable();
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.alibaba.nacos.shaded.com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.alibaba.nacos.shaded.com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.alibaba.nacos.shaded.com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.alibaba.nacos.shaded.com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.alibaba.nacos.shaded.com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.alibaba.nacos.shaded.com.google.protobuf.Message other) {
if (other instanceof com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo) {
return mergeFrom((com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo other) {
if (other == com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo.getDefaultInstance()) return this;
if (!other.getReason().isEmpty()) {
reason_ = other.reason_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getDomain().isEmpty()) {
domain_ = other.domain_;
bitField0_ |= 0x00000002;
onChanged();
}
internalGetMutableMetadata().mergeFrom(other.internalGetMetadata());
bitField0_ |= 0x00000004;
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.alibaba.nacos.shaded.com.google.protobuf.CodedInputStream input,
com.alibaba.nacos.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
reason_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
domain_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
com.alibaba.nacos.shaded.com.google.protobuf.MapEntry metadata__ =
input.readMessage(
MetadataDefaultEntryHolder.defaultEntry.getParserForType(),
extensionRegistry);
internalGetMutableMetadata()
.getMutableMap()
.put(metadata__.getKey(), metadata__.getValue());
bitField0_ |= 0x00000004;
break;
} // case 26
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object reason_ = "";
/**
*
*
*
* The reason of the error. This is a constant value that identifies the
* proximate cause of the error. Error reasons are unique within a particular
* domain of errors. This should be at most 63 characters and match a
* regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents
* UPPER_SNAKE_CASE.
*
* The reason of the error. This is a constant value that identifies the
* proximate cause of the error. Error reasons are unique within a particular
* domain of errors. This should be at most 63 characters and match a
* regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents
* UPPER_SNAKE_CASE.
*
*
* string reason = 1;
*
* @return The bytes for reason.
*/
public com.alibaba.nacos.shaded.com.google.protobuf.ByteString getReasonBytes() {
java.lang.Object ref = reason_;
if (ref instanceof String) {
com.alibaba.nacos.shaded.com.google.protobuf.ByteString b =
com.alibaba.nacos.shaded.com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
reason_ = b;
return b;
} else {
return (com.alibaba.nacos.shaded.com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The reason of the error. This is a constant value that identifies the
* proximate cause of the error. Error reasons are unique within a particular
* domain of errors. This should be at most 63 characters and match a
* regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents
* UPPER_SNAKE_CASE.
*
*
* string reason = 1;
*
* @param value The reason to set.
* @return This builder for chaining.
*/
public Builder setReason(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
reason_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The reason of the error. This is a constant value that identifies the
* proximate cause of the error. Error reasons are unique within a particular
* domain of errors. This should be at most 63 characters and match a
* regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents
* UPPER_SNAKE_CASE.
*
* The reason of the error. This is a constant value that identifies the
* proximate cause of the error. Error reasons are unique within a particular
* domain of errors. This should be at most 63 characters and match a
* regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents
* UPPER_SNAKE_CASE.
*
*
* string reason = 1;
*
* @param value The bytes for reason to set.
* @return This builder for chaining.
*/
public Builder setReasonBytes(com.alibaba.nacos.shaded.com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
reason_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object domain_ = "";
/**
*
*
*
* The logical grouping to which the "reason" belongs. The error domain
* is typically the registered service name of the tool or product that
* generates the error. Example: "pubsub.googleapis.com". If the error is
* generated by some common infrastructure, the error domain must be a
* globally unique value that identifies the infrastructure. For Google API
* infrastructure, the error domain is "googleapis.com".
*
* The logical grouping to which the "reason" belongs. The error domain
* is typically the registered service name of the tool or product that
* generates the error. Example: "pubsub.googleapis.com". If the error is
* generated by some common infrastructure, the error domain must be a
* globally unique value that identifies the infrastructure. For Google API
* infrastructure, the error domain is "googleapis.com".
*
*
* string domain = 2;
*
* @return The bytes for domain.
*/
public com.alibaba.nacos.shaded.com.google.protobuf.ByteString getDomainBytes() {
java.lang.Object ref = domain_;
if (ref instanceof String) {
com.alibaba.nacos.shaded.com.google.protobuf.ByteString b =
com.alibaba.nacos.shaded.com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
domain_ = b;
return b;
} else {
return (com.alibaba.nacos.shaded.com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The logical grouping to which the "reason" belongs. The error domain
* is typically the registered service name of the tool or product that
* generates the error. Example: "pubsub.googleapis.com". If the error is
* generated by some common infrastructure, the error domain must be a
* globally unique value that identifies the infrastructure. For Google API
* infrastructure, the error domain is "googleapis.com".
*
*
* string domain = 2;
*
* @param value The domain to set.
* @return This builder for chaining.
*/
public Builder setDomain(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
domain_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The logical grouping to which the "reason" belongs. The error domain
* is typically the registered service name of the tool or product that
* generates the error. Example: "pubsub.googleapis.com". If the error is
* generated by some common infrastructure, the error domain must be a
* globally unique value that identifies the infrastructure. For Google API
* infrastructure, the error domain is "googleapis.com".
*
* The logical grouping to which the "reason" belongs. The error domain
* is typically the registered service name of the tool or product that
* generates the error. Example: "pubsub.googleapis.com". If the error is
* generated by some common infrastructure, the error domain must be a
* globally unique value that identifies the infrastructure. For Google API
* infrastructure, the error domain is "googleapis.com".
*
*
* string domain = 2;
*
* @param value The bytes for domain to set.
* @return This builder for chaining.
*/
public Builder setDomainBytes(com.alibaba.nacos.shaded.com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
domain_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private com.alibaba.nacos.shaded.com.google.protobuf.MapField metadata_;
private com.alibaba.nacos.shaded.com.google.protobuf.MapField internalGetMetadata() {
if (metadata_ == null) {
return com.alibaba.nacos.shaded.com.google.protobuf.MapField.emptyMapField(MetadataDefaultEntryHolder.defaultEntry);
}
return metadata_;
}
private com.alibaba.nacos.shaded.com.google.protobuf.MapField
internalGetMutableMetadata() {
if (metadata_ == null) {
metadata_ =
com.alibaba.nacos.shaded.com.google.protobuf.MapField.newMapField(MetadataDefaultEntryHolder.defaultEntry);
}
if (!metadata_.isMutable()) {
metadata_ = metadata_.copy();
}
bitField0_ |= 0x00000004;
onChanged();
return metadata_;
}
public int getMetadataCount() {
return internalGetMetadata().getMap().size();
}
/**
*
*
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
*
* map<string, string> metadata = 3;
*/
@java.lang.Override
public boolean containsMetadata(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
return internalGetMetadata().getMap().containsKey(key);
}
/** Use {@link #getMetadataMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getMetadata() {
return getMetadataMap();
}
/**
*
*
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
*
* map<string, string> metadata = 3;
*/
@java.lang.Override
public java.lang.String getMetadataOrThrow(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
java.util.Map map = internalGetMetadata().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearMetadata() {
bitField0_ = (bitField0_ & ~0x00000004);
internalGetMutableMetadata().getMutableMap().clear();
return this;
}
/**
*
*
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
*
* map<string, string> metadata = 3;
*/
public Builder removeMetadata(java.lang.String key) {
if (key == null) {
throw new NullPointerException("map key");
}
internalGetMutableMetadata().getMutableMap().remove(key);
return this;
}
/** Use alternate mutation accessors instead. */
@java.lang.Deprecated
public java.util.Map getMutableMetadata() {
bitField0_ |= 0x00000004;
return internalGetMutableMetadata().getMutableMap();
}
/**
*
*
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
*
* map<string, string> metadata = 3;
*/
public Builder putMetadata(java.lang.String key, java.lang.String value) {
if (key == null) {
throw new NullPointerException("map key");
}
if (value == null) {
throw new NullPointerException("map value");
}
internalGetMutableMetadata().getMutableMap().put(key, value);
bitField0_ |= 0x00000004;
return this;
}
/**
*
*
*
* Additional structured details about this error.
* Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
* length. When identifying the current value of an exceeded limit, the units
* should be contained in the key, not the value. For example, rather than
* {"instanceLimit": "100/request"}, should be returned as,
* {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
* instances that can be created in a single (batch) request.
*
*
* map<string, string> metadata = 3;
*/
public Builder putAllMetadata(java.util.Map values) {
internalGetMutableMetadata().getMutableMap().putAll(values);
bitField0_ |= 0x00000004;
return this;
}
@java.lang.Override
public final Builder setUnknownFields(final com.alibaba.nacos.shaded.com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.alibaba.nacos.shaded.com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.rpc.ErrorInfo)
}
// @@protoc_insertion_point(class_scope:google.rpc.ErrorInfo)
private static final com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo();
}
public static com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.alibaba.nacos.shaded.com.google.protobuf.Parser PARSER =
new com.alibaba.nacos.shaded.com.google.protobuf.AbstractParser() {
@java.lang.Override
public ErrorInfo parsePartialFrom(
com.alibaba.nacos.shaded.com.google.protobuf.CodedInputStream input,
com.alibaba.nacos.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.alibaba.nacos.shaded.com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.alibaba.nacos.shaded.com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.alibaba.nacos.shaded.com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.alibaba.nacos.shaded.com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.alibaba.nacos.shaded.com.google.rpc.ErrorInfo getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}