All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ratis.thirdparty.com.google.rpc.BadRequest Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/rpc/error_details.proto

package org.apache.ratis.thirdparty.com.google.rpc;

/**
 * 
 * Describes violations in a client request. This error type focuses on the
 * syntactic aspects of the request.
 * 
* * Protobuf type {@code google.rpc.BadRequest} */ public final class BadRequest extends org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.rpc.BadRequest) BadRequestOrBuilder { private static final long serialVersionUID = 0L; // Use BadRequest.newBuilder() to construct. private BadRequest(org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private BadRequest() { fieldViolations_ = java.util.Collections.emptyList(); } @Override public final org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private BadRequest( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new NullPointerException(); } int mutable_bitField0_ = 0; org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet.Builder unknownFields = org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { if (!((mutable_bitField0_ & 0x00000001) != 0)) { fieldViolations_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } fieldViolations_.add( input.readMessage(FieldViolation.parser(), extensionRegistry)); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000001) != 0)) { fieldViolations_ = java.util.Collections.unmodifiableList(fieldViolations_); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_descriptor; } @Override protected FieldAccessorTable internalGetFieldAccessorTable() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( BadRequest.class, Builder.class); } public interface FieldViolationOrBuilder extends // @@protoc_insertion_point(interface_extends:google.rpc.BadRequest.FieldViolation) org.apache.ratis.thirdparty.com.google.protobuf.MessageOrBuilder { /** *
     * A path leading to a field in the request body. The value will be a
     * sequence of dot-separated identifiers that identify a protocol buffer
     * field. E.g., "field_violations.field" would identify this field.
     * 
* * string field = 1; */ String getField(); /** *
     * A path leading to a field in the request body. The value will be a
     * sequence of dot-separated identifiers that identify a protocol buffer
     * field. E.g., "field_violations.field" would identify this field.
     * 
* * string field = 1; */ org.apache.ratis.thirdparty.com.google.protobuf.ByteString getFieldBytes(); /** *
     * A description of why the request element is bad.
     * 
* * string description = 2; */ String getDescription(); /** *
     * A description of why the request element is bad.
     * 
* * string description = 2; */ org.apache.ratis.thirdparty.com.google.protobuf.ByteString getDescriptionBytes(); } /** *
   * A message type used to describe a single bad request field.
   * 
* * Protobuf type {@code google.rpc.BadRequest.FieldViolation} */ public static final class FieldViolation extends org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.rpc.BadRequest.FieldViolation) FieldViolationOrBuilder { private static final long serialVersionUID = 0L; // Use FieldViolation.newBuilder() to construct. private FieldViolation(org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private FieldViolation() { field_ = ""; description_ = ""; } @Override public final org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private FieldViolation( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new NullPointerException(); } int mutable_bitField0_ = 0; org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet.Builder unknownFields = org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { String s = input.readStringRequireUtf8(); field_ = s; break; } case 18: { String s = input.readStringRequireUtf8(); description_ = s; break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_FieldViolation_descriptor; } @Override protected FieldAccessorTable internalGetFieldAccessorTable() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_FieldViolation_fieldAccessorTable .ensureFieldAccessorsInitialized( FieldViolation.class, Builder.class); } public static final int FIELD_FIELD_NUMBER = 1; private volatile Object field_; /** *
     * A path leading to a field in the request body. The value will be a
     * sequence of dot-separated identifiers that identify a protocol buffer
     * field. E.g., "field_violations.field" would identify this field.
     * 
* * string field = 1; */ public String getField() { Object ref = field_; if (ref instanceof String) { return (String) ref; } else { org.apache.ratis.thirdparty.com.google.protobuf.ByteString bs = (org.apache.ratis.thirdparty.com.google.protobuf.ByteString) ref; String s = bs.toStringUtf8(); field_ = s; return s; } } /** *
     * A path leading to a field in the request body. The value will be a
     * sequence of dot-separated identifiers that identify a protocol buffer
     * field. E.g., "field_violations.field" would identify this field.
     * 
* * string field = 1; */ public org.apache.ratis.thirdparty.com.google.protobuf.ByteString getFieldBytes() { Object ref = field_; if (ref instanceof String) { org.apache.ratis.thirdparty.com.google.protobuf.ByteString b = org.apache.ratis.thirdparty.com.google.protobuf.ByteString.copyFromUtf8( (String) ref); field_ = b; return b; } else { return (org.apache.ratis.thirdparty.com.google.protobuf.ByteString) ref; } } public static final int DESCRIPTION_FIELD_NUMBER = 2; private volatile Object description_; /** *
     * A description of why the request element is bad.
     * 
* * string description = 2; */ public String getDescription() { Object ref = description_; if (ref instanceof String) { return (String) ref; } else { org.apache.ratis.thirdparty.com.google.protobuf.ByteString bs = (org.apache.ratis.thirdparty.com.google.protobuf.ByteString) ref; String s = bs.toStringUtf8(); description_ = s; return s; } } /** *
     * A description of why the request element is bad.
     * 
* * string description = 2; */ public org.apache.ratis.thirdparty.com.google.protobuf.ByteString getDescriptionBytes() { Object ref = description_; if (ref instanceof String) { org.apache.ratis.thirdparty.com.google.protobuf.ByteString b = org.apache.ratis.thirdparty.com.google.protobuf.ByteString.copyFromUtf8( (String) ref); description_ = b; return b; } else { return (org.apache.ratis.thirdparty.com.google.protobuf.ByteString) ref; } } private byte memoizedIsInitialized = -1; @Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @Override public void writeTo(org.apache.ratis.thirdparty.com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!getFieldBytes().isEmpty()) { org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.writeString(output, 1, field_); } if (!getDescriptionBytes().isEmpty()) { org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.writeString(output, 2, description_); } unknownFields.writeTo(output); } @Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getFieldBytes().isEmpty()) { size += org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.computeStringSize(1, field_); } if (!getDescriptionBytes().isEmpty()) { size += org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.computeStringSize(2, description_); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @Override public boolean equals(final Object obj) { if (obj == this) { return true; } if (!(obj instanceof FieldViolation)) { return super.equals(obj); } FieldViolation other = (FieldViolation) obj; if (!getField() .equals(other.getField())) return false; if (!getDescription() .equals(other.getDescription())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + FIELD_FIELD_NUMBER; hash = (53 * hash) + getField().hashCode(); hash = (37 * hash) + DESCRIPTION_FIELD_NUMBER; hash = (53 * hash) + getDescription().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static FieldViolation parseFrom( java.nio.ByteBuffer data) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static FieldViolation parseFrom( java.nio.ByteBuffer data, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static FieldViolation parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.ByteString data) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static FieldViolation parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.ByteString data, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static FieldViolation parseFrom(byte[] data) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static FieldViolation parseFrom( byte[] data, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static FieldViolation parseFrom(java.io.InputStream input) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static FieldViolation parseFrom( java.io.InputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static FieldViolation parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static FieldViolation parseDelimitedFrom( java.io.InputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static FieldViolation parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static FieldViolation parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(FieldViolation prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @Override protected Builder newBuilderForType( BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
     * A message type used to describe a single bad request field.
     * 
* * Protobuf type {@code google.rpc.BadRequest.FieldViolation} */ public static final class Builder extends org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.rpc.BadRequest.FieldViolation) FieldViolationOrBuilder { public static final org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_FieldViolation_descriptor; } @Override protected FieldAccessorTable internalGetFieldAccessorTable() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_FieldViolation_fieldAccessorTable .ensureFieldAccessorsInitialized( FieldViolation.class, Builder.class); } // Construct using org.apache.ratis.thirdparty.com.google.rpc.BadRequest.FieldViolation.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @Override public Builder clear() { super.clear(); field_ = ""; description_ = ""; return this; } @Override public org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_FieldViolation_descriptor; } @Override public FieldViolation getDefaultInstanceForType() { return FieldViolation.getDefaultInstance(); } @Override public FieldViolation build() { FieldViolation result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @Override public FieldViolation buildPartial() { FieldViolation result = new FieldViolation(this); result.field_ = field_; result.description_ = description_; onBuilt(); return result; } @Override public Builder clone() { return super.clone(); } @Override public Builder setField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.setField(field, value); } @Override public Builder clearField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @Override public Builder clearOneof( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @Override public Builder setRepeatedField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value) { return super.setRepeatedField(field, index, value); } @Override public Builder addRepeatedField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.addRepeatedField(field, value); } @Override public Builder mergeFrom(org.apache.ratis.thirdparty.com.google.protobuf.Message other) { if (other instanceof FieldViolation) { return mergeFrom((FieldViolation)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(FieldViolation other) { if (other == FieldViolation.getDefaultInstance()) return this; if (!other.getField().isEmpty()) { field_ = other.field_; onChanged(); } if (!other.getDescription().isEmpty()) { description_ = other.description_; onChanged(); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @Override public final boolean isInitialized() { return true; } @Override public Builder mergeFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { FieldViolation parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (FieldViolation) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private Object field_ = ""; /** *
       * A path leading to a field in the request body. The value will be a
       * sequence of dot-separated identifiers that identify a protocol buffer
       * field. E.g., "field_violations.field" would identify this field.
       * 
* * string field = 1; */ public String getField() { Object ref = field_; if (!(ref instanceof String)) { org.apache.ratis.thirdparty.com.google.protobuf.ByteString bs = (org.apache.ratis.thirdparty.com.google.protobuf.ByteString) ref; String s = bs.toStringUtf8(); field_ = s; return s; } else { return (String) ref; } } /** *
       * A path leading to a field in the request body. The value will be a
       * sequence of dot-separated identifiers that identify a protocol buffer
       * field. E.g., "field_violations.field" would identify this field.
       * 
* * string field = 1; */ public org.apache.ratis.thirdparty.com.google.protobuf.ByteString getFieldBytes() { Object ref = field_; if (ref instanceof String) { org.apache.ratis.thirdparty.com.google.protobuf.ByteString b = org.apache.ratis.thirdparty.com.google.protobuf.ByteString.copyFromUtf8( (String) ref); field_ = b; return b; } else { return (org.apache.ratis.thirdparty.com.google.protobuf.ByteString) ref; } } /** *
       * A path leading to a field in the request body. The value will be a
       * sequence of dot-separated identifiers that identify a protocol buffer
       * field. E.g., "field_violations.field" would identify this field.
       * 
* * string field = 1; */ public Builder setField( String value) { if (value == null) { throw new NullPointerException(); } field_ = value; onChanged(); return this; } /** *
       * A path leading to a field in the request body. The value will be a
       * sequence of dot-separated identifiers that identify a protocol buffer
       * field. E.g., "field_violations.field" would identify this field.
       * 
* * string field = 1; */ public Builder clearField() { field_ = getDefaultInstance().getField(); onChanged(); return this; } /** *
       * A path leading to a field in the request body. The value will be a
       * sequence of dot-separated identifiers that identify a protocol buffer
       * field. E.g., "field_violations.field" would identify this field.
       * 
* * string field = 1; */ public Builder setFieldBytes( org.apache.ratis.thirdparty.com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); field_ = value; onChanged(); return this; } private Object description_ = ""; /** *
       * A description of why the request element is bad.
       * 
* * string description = 2; */ public String getDescription() { Object ref = description_; if (!(ref instanceof String)) { org.apache.ratis.thirdparty.com.google.protobuf.ByteString bs = (org.apache.ratis.thirdparty.com.google.protobuf.ByteString) ref; String s = bs.toStringUtf8(); description_ = s; return s; } else { return (String) ref; } } /** *
       * A description of why the request element is bad.
       * 
* * string description = 2; */ public org.apache.ratis.thirdparty.com.google.protobuf.ByteString getDescriptionBytes() { Object ref = description_; if (ref instanceof String) { org.apache.ratis.thirdparty.com.google.protobuf.ByteString b = org.apache.ratis.thirdparty.com.google.protobuf.ByteString.copyFromUtf8( (String) ref); description_ = b; return b; } else { return (org.apache.ratis.thirdparty.com.google.protobuf.ByteString) ref; } } /** *
       * A description of why the request element is bad.
       * 
* * string description = 2; */ public Builder setDescription( String value) { if (value == null) { throw new NullPointerException(); } description_ = value; onChanged(); return this; } /** *
       * A description of why the request element is bad.
       * 
* * string description = 2; */ public Builder clearDescription() { description_ = getDefaultInstance().getDescription(); onChanged(); return this; } /** *
       * A description of why the request element is bad.
       * 
* * string description = 2; */ public Builder setDescriptionBytes( org.apache.ratis.thirdparty.com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); description_ = value; onChanged(); return this; } @Override public final Builder setUnknownFields( final org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @Override public final Builder mergeUnknownFields( final org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.rpc.BadRequest.FieldViolation) } // @@protoc_insertion_point(class_scope:google.rpc.BadRequest.FieldViolation) private static final FieldViolation DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new FieldViolation(); } public static FieldViolation getDefaultInstance() { return DEFAULT_INSTANCE; } private static final org.apache.ratis.thirdparty.com.google.protobuf.Parser PARSER = new org.apache.ratis.thirdparty.com.google.protobuf.AbstractParser() { @Override public FieldViolation parsePartialFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return new FieldViolation(input, extensionRegistry); } }; public static org.apache.ratis.thirdparty.com.google.protobuf.Parser parser() { return PARSER; } @Override public org.apache.ratis.thirdparty.com.google.protobuf.Parser getParserForType() { return PARSER; } @Override public FieldViolation getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } public static final int FIELD_VIOLATIONS_FIELD_NUMBER = 1; private java.util.List fieldViolations_; /** *
   * Describes all violations in a client request.
   * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public java.util.List getFieldViolationsList() { return fieldViolations_; } /** *
   * Describes all violations in a client request.
   * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public java.util.List getFieldViolationsOrBuilderList() { return fieldViolations_; } /** *
   * Describes all violations in a client request.
   * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public int getFieldViolationsCount() { return fieldViolations_.size(); } /** *
   * Describes all violations in a client request.
   * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public FieldViolation getFieldViolations(int index) { return fieldViolations_.get(index); } /** *
   * Describes all violations in a client request.
   * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public FieldViolationOrBuilder getFieldViolationsOrBuilder( int index) { return fieldViolations_.get(index); } private byte memoizedIsInitialized = -1; @Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @Override public void writeTo(org.apache.ratis.thirdparty.com.google.protobuf.CodedOutputStream output) throws java.io.IOException { for (int i = 0; i < fieldViolations_.size(); i++) { output.writeMessage(1, fieldViolations_.get(i)); } unknownFields.writeTo(output); } @Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (int i = 0; i < fieldViolations_.size(); i++) { size += org.apache.ratis.thirdparty.com.google.protobuf.CodedOutputStream .computeMessageSize(1, fieldViolations_.get(i)); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @Override public boolean equals(final Object obj) { if (obj == this) { return true; } if (!(obj instanceof BadRequest)) { return super.equals(obj); } BadRequest other = (BadRequest) obj; if (!getFieldViolationsList() .equals(other.getFieldViolationsList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (getFieldViolationsCount() > 0) { hash = (37 * hash) + FIELD_VIOLATIONS_FIELD_NUMBER; hash = (53 * hash) + getFieldViolationsList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static BadRequest parseFrom( java.nio.ByteBuffer data) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static BadRequest parseFrom( java.nio.ByteBuffer data, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static BadRequest parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.ByteString data) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static BadRequest parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.ByteString data, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static BadRequest parseFrom(byte[] data) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static BadRequest parseFrom( byte[] data, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static BadRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static BadRequest parseFrom( java.io.InputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static BadRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static BadRequest parseDelimitedFrom( java.io.InputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static BadRequest parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static BadRequest parseFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(BadRequest prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @Override protected Builder newBuilderForType( BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * Describes violations in a client request. This error type focuses on the
   * syntactic aspects of the request.
   * 
* * Protobuf type {@code google.rpc.BadRequest} */ public static final class Builder extends org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.rpc.BadRequest) org.apache.ratis.thirdparty.com.google.rpc.BadRequestOrBuilder { public static final org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_descriptor; } @Override protected FieldAccessorTable internalGetFieldAccessorTable() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( BadRequest.class, Builder.class); } // Construct using org.apache.ratis.thirdparty.com.google.rpc.BadRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getFieldViolationsFieldBuilder(); } } @Override public Builder clear() { super.clear(); if (fieldViolationsBuilder_ == null) { fieldViolations_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { fieldViolationsBuilder_.clear(); } return this; } @Override public org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.apache.ratis.thirdparty.com.google.rpc.ErrorDetailsProto.internal_static_google_rpc_BadRequest_descriptor; } @Override public BadRequest getDefaultInstanceForType() { return BadRequest.getDefaultInstance(); } @Override public BadRequest build() { BadRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @Override public BadRequest buildPartial() { BadRequest result = new BadRequest(this); int from_bitField0_ = bitField0_; if (fieldViolationsBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0)) { fieldViolations_ = java.util.Collections.unmodifiableList(fieldViolations_); bitField0_ = (bitField0_ & ~0x00000001); } result.fieldViolations_ = fieldViolations_; } else { result.fieldViolations_ = fieldViolationsBuilder_.build(); } onBuilt(); return result; } @Override public Builder clone() { return super.clone(); } @Override public Builder setField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.setField(field, value); } @Override public Builder clearField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @Override public Builder clearOneof( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @Override public Builder setRepeatedField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value) { return super.setRepeatedField(field, index, value); } @Override public Builder addRepeatedField( org.apache.ratis.thirdparty.com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return super.addRepeatedField(field, value); } @Override public Builder mergeFrom(org.apache.ratis.thirdparty.com.google.protobuf.Message other) { if (other instanceof BadRequest) { return mergeFrom((BadRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(BadRequest other) { if (other == BadRequest.getDefaultInstance()) return this; if (fieldViolationsBuilder_ == null) { if (!other.fieldViolations_.isEmpty()) { if (fieldViolations_.isEmpty()) { fieldViolations_ = other.fieldViolations_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureFieldViolationsIsMutable(); fieldViolations_.addAll(other.fieldViolations_); } onChanged(); } } else { if (!other.fieldViolations_.isEmpty()) { if (fieldViolationsBuilder_.isEmpty()) { fieldViolationsBuilder_.dispose(); fieldViolationsBuilder_ = null; fieldViolations_ = other.fieldViolations_; bitField0_ = (bitField0_ & ~0x00000001); fieldViolationsBuilder_ = org.apache.ratis.thirdparty.com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getFieldViolationsFieldBuilder() : null; } else { fieldViolationsBuilder_.addAllMessages(other.fieldViolations_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @Override public final boolean isInitialized() { return true; } @Override public Builder mergeFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { BadRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (BadRequest) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.util.List fieldViolations_ = java.util.Collections.emptyList(); private void ensureFieldViolationsIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { fieldViolations_ = new java.util.ArrayList(fieldViolations_); bitField0_ |= 0x00000001; } } private org.apache.ratis.thirdparty.com.google.protobuf.RepeatedFieldBuilderV3< FieldViolation, FieldViolation.Builder, FieldViolationOrBuilder> fieldViolationsBuilder_; /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public java.util.List getFieldViolationsList() { if (fieldViolationsBuilder_ == null) { return java.util.Collections.unmodifiableList(fieldViolations_); } else { return fieldViolationsBuilder_.getMessageList(); } } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public int getFieldViolationsCount() { if (fieldViolationsBuilder_ == null) { return fieldViolations_.size(); } else { return fieldViolationsBuilder_.getCount(); } } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public FieldViolation getFieldViolations(int index) { if (fieldViolationsBuilder_ == null) { return fieldViolations_.get(index); } else { return fieldViolationsBuilder_.getMessage(index); } } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public Builder setFieldViolations( int index, FieldViolation value) { if (fieldViolationsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFieldViolationsIsMutable(); fieldViolations_.set(index, value); onChanged(); } else { fieldViolationsBuilder_.setMessage(index, value); } return this; } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public Builder setFieldViolations( int index, FieldViolation.Builder builderForValue) { if (fieldViolationsBuilder_ == null) { ensureFieldViolationsIsMutable(); fieldViolations_.set(index, builderForValue.build()); onChanged(); } else { fieldViolationsBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public Builder addFieldViolations(FieldViolation value) { if (fieldViolationsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFieldViolationsIsMutable(); fieldViolations_.add(value); onChanged(); } else { fieldViolationsBuilder_.addMessage(value); } return this; } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public Builder addFieldViolations( int index, FieldViolation value) { if (fieldViolationsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFieldViolationsIsMutable(); fieldViolations_.add(index, value); onChanged(); } else { fieldViolationsBuilder_.addMessage(index, value); } return this; } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public Builder addFieldViolations( FieldViolation.Builder builderForValue) { if (fieldViolationsBuilder_ == null) { ensureFieldViolationsIsMutable(); fieldViolations_.add(builderForValue.build()); onChanged(); } else { fieldViolationsBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public Builder addFieldViolations( int index, FieldViolation.Builder builderForValue) { if (fieldViolationsBuilder_ == null) { ensureFieldViolationsIsMutable(); fieldViolations_.add(index, builderForValue.build()); onChanged(); } else { fieldViolationsBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public Builder addAllFieldViolations( Iterable values) { if (fieldViolationsBuilder_ == null) { ensureFieldViolationsIsMutable(); org.apache.ratis.thirdparty.com.google.protobuf.AbstractMessageLite.Builder.addAll( values, fieldViolations_); onChanged(); } else { fieldViolationsBuilder_.addAllMessages(values); } return this; } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public Builder clearFieldViolations() { if (fieldViolationsBuilder_ == null) { fieldViolations_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { fieldViolationsBuilder_.clear(); } return this; } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public Builder removeFieldViolations(int index) { if (fieldViolationsBuilder_ == null) { ensureFieldViolationsIsMutable(); fieldViolations_.remove(index); onChanged(); } else { fieldViolationsBuilder_.remove(index); } return this; } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public FieldViolation.Builder getFieldViolationsBuilder( int index) { return getFieldViolationsFieldBuilder().getBuilder(index); } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public FieldViolationOrBuilder getFieldViolationsOrBuilder( int index) { if (fieldViolationsBuilder_ == null) { return fieldViolations_.get(index); } else { return fieldViolationsBuilder_.getMessageOrBuilder(index); } } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public java.util.List getFieldViolationsOrBuilderList() { if (fieldViolationsBuilder_ != null) { return fieldViolationsBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(fieldViolations_); } } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public FieldViolation.Builder addFieldViolationsBuilder() { return getFieldViolationsFieldBuilder().addBuilder( FieldViolation.getDefaultInstance()); } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public FieldViolation.Builder addFieldViolationsBuilder( int index) { return getFieldViolationsFieldBuilder().addBuilder( index, FieldViolation.getDefaultInstance()); } /** *
     * Describes all violations in a client request.
     * 
* * repeated .google.rpc.BadRequest.FieldViolation field_violations = 1; */ public java.util.List getFieldViolationsBuilderList() { return getFieldViolationsFieldBuilder().getBuilderList(); } private org.apache.ratis.thirdparty.com.google.protobuf.RepeatedFieldBuilderV3< FieldViolation, FieldViolation.Builder, FieldViolationOrBuilder> getFieldViolationsFieldBuilder() { if (fieldViolationsBuilder_ == null) { fieldViolationsBuilder_ = new org.apache.ratis.thirdparty.com.google.protobuf.RepeatedFieldBuilderV3< FieldViolation, FieldViolation.Builder, FieldViolationOrBuilder>( fieldViolations_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); fieldViolations_ = null; } return fieldViolationsBuilder_; } @Override public final Builder setUnknownFields( final org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @Override public final Builder mergeUnknownFields( final org.apache.ratis.thirdparty.com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.rpc.BadRequest) } // @@protoc_insertion_point(class_scope:google.rpc.BadRequest) private static final BadRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new BadRequest(); } public static BadRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final org.apache.ratis.thirdparty.com.google.protobuf.Parser PARSER = new org.apache.ratis.thirdparty.com.google.protobuf.AbstractParser() { @Override public BadRequest parsePartialFrom( org.apache.ratis.thirdparty.com.google.protobuf.CodedInputStream input, org.apache.ratis.thirdparty.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws org.apache.ratis.thirdparty.com.google.protobuf.InvalidProtocolBufferException { return new BadRequest(input, extensionRegistry); } }; public static org.apache.ratis.thirdparty.com.google.protobuf.Parser parser() { return PARSER; } @Override public org.apache.ratis.thirdparty.com.google.protobuf.Parser getParserForType() { return PARSER; } @Override public BadRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy