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

io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: envoy/service/ext_proc/v3/external_processor.proto

// Protobuf Java Version: 3.25.1
package io.envoyproxy.envoy.service.ext_proc.v3;

/**
 * 
 * This message specifies the body mutation the server sends to Envoy.
 * 
* * Protobuf type {@code envoy.service.ext_proc.v3.BodyMutation} */ public final class BodyMutation extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.service.ext_proc.v3.BodyMutation) BodyMutationOrBuilder { private static final long serialVersionUID = 0L; // Use BodyMutation.newBuilder() to construct. private BodyMutation(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private BodyMutation() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new BodyMutation(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.service.ext_proc.v3.ExternalProcessorProto.internal_static_envoy_service_ext_proc_v3_BodyMutation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.ext_proc.v3.ExternalProcessorProto.internal_static_envoy_service_ext_proc_v3_BodyMutation_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation.class, io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation.Builder.class); } private int mutationCase_ = 0; @SuppressWarnings("serial") private java.lang.Object mutation_; public enum MutationCase implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { BODY(1), CLEAR_BODY(2), STREAMED_RESPONSE(3), MUTATION_NOT_SET(0); private final int value; private MutationCase(int value) { this.value = value; } /** * @param value The number of the enum to look for. * @return The enum associated with the given number. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static MutationCase valueOf(int value) { return forNumber(value); } public static MutationCase forNumber(int value) { switch (value) { case 1: return BODY; case 2: return CLEAR_BODY; case 3: return STREAMED_RESPONSE; case 0: return MUTATION_NOT_SET; default: return null; } } public int getNumber() { return this.value; } }; public MutationCase getMutationCase() { return MutationCase.forNumber( mutationCase_); } public static final int BODY_FIELD_NUMBER = 1; /** *
   * The entire body to replace.
   * Should only be used when the corresponding ``BodySendMode`` in the
   * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
   * is not set to ``FULL_DUPLEX_STREAMED``.
   * 
* * bytes body = 1; * @return Whether the body field is set. */ @java.lang.Override public boolean hasBody() { return mutationCase_ == 1; } /** *
   * The entire body to replace.
   * Should only be used when the corresponding ``BodySendMode`` in the
   * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
   * is not set to ``FULL_DUPLEX_STREAMED``.
   * 
* * bytes body = 1; * @return The body. */ @java.lang.Override public com.google.protobuf.ByteString getBody() { if (mutationCase_ == 1) { return (com.google.protobuf.ByteString) mutation_; } return com.google.protobuf.ByteString.EMPTY; } public static final int CLEAR_BODY_FIELD_NUMBER = 2; /** *
   * Clear the corresponding body chunk.
   * Should only be used when the corresponding ``BodySendMode`` in the
   * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
   * is not set to ``FULL_DUPLEX_STREAMED``.
   * Clear the corresponding body chunk.
   * 
* * bool clear_body = 2; * @return Whether the clearBody field is set. */ @java.lang.Override public boolean hasClearBody() { return mutationCase_ == 2; } /** *
   * Clear the corresponding body chunk.
   * Should only be used when the corresponding ``BodySendMode`` in the
   * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
   * is not set to ``FULL_DUPLEX_STREAMED``.
   * Clear the corresponding body chunk.
   * 
* * bool clear_body = 2; * @return The clearBody. */ @java.lang.Override public boolean getClearBody() { if (mutationCase_ == 2) { return (java.lang.Boolean) mutation_; } return false; } public static final int STREAMED_RESPONSE_FIELD_NUMBER = 3; /** *
   * Must be used when the corresponding ``BodySendMode`` in the
   * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
   * is set to ``FULL_DUPLEX_STREAMED``.
   * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } * @return Whether the streamedResponse field is set. */ @java.lang.Override public boolean hasStreamedResponse() { return mutationCase_ == 3; } /** *
   * Must be used when the corresponding ``BodySendMode`` in the
   * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
   * is set to ``FULL_DUPLEX_STREAMED``.
   * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } * @return The streamedResponse. */ @java.lang.Override public io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse getStreamedResponse() { if (mutationCase_ == 3) { return (io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse) mutation_; } return io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.getDefaultInstance(); } /** *
   * Must be used when the corresponding ``BodySendMode`` in the
   * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
   * is set to ``FULL_DUPLEX_STREAMED``.
   * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } */ @java.lang.Override public io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponseOrBuilder getStreamedResponseOrBuilder() { if (mutationCase_ == 3) { return (io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse) mutation_; } return io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.getDefaultInstance(); } 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.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (mutationCase_ == 1) { output.writeBytes( 1, (com.google.protobuf.ByteString) mutation_); } if (mutationCase_ == 2) { output.writeBool( 2, (boolean)((java.lang.Boolean) mutation_)); } if (mutationCase_ == 3) { output.writeMessage(3, (io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse) mutation_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (mutationCase_ == 1) { size += com.google.protobuf.CodedOutputStream .computeBytesSize( 1, (com.google.protobuf.ByteString) mutation_); } if (mutationCase_ == 2) { size += com.google.protobuf.CodedOutputStream .computeBoolSize( 2, (boolean)((java.lang.Boolean) mutation_)); } if (mutationCase_ == 3) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, (io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse) mutation_); } 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 io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation)) { return super.equals(obj); } io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation other = (io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation) obj; if (!getMutationCase().equals(other.getMutationCase())) return false; switch (mutationCase_) { case 1: if (!getBody() .equals(other.getBody())) return false; break; case 2: if (getClearBody() != other.getClearBody()) return false; break; case 3: if (!getStreamedResponse() .equals(other.getStreamedResponse())) return false; break; case 0: default: } 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(); switch (mutationCase_) { case 1: hash = (37 * hash) + BODY_FIELD_NUMBER; hash = (53 * hash) + getBody().hashCode(); break; case 2: hash = (37 * hash) + CLEAR_BODY_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getClearBody()); break; case 3: hash = (37 * hash) + STREAMED_RESPONSE_FIELD_NUMBER; hash = (53 * hash) + getStreamedResponse().hashCode(); break; case 0: default: } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return 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(io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation 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.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * This message specifies the body mutation the server sends to Envoy.
   * 
* * Protobuf type {@code envoy.service.ext_proc.v3.BodyMutation} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.service.ext_proc.v3.BodyMutation) io.envoyproxy.envoy.service.ext_proc.v3.BodyMutationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.service.ext_proc.v3.ExternalProcessorProto.internal_static_envoy_service_ext_proc_v3_BodyMutation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.ext_proc.v3.ExternalProcessorProto.internal_static_envoy_service_ext_proc_v3_BodyMutation_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation.class, io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation.Builder.class); } // Construct using io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; if (streamedResponseBuilder_ != null) { streamedResponseBuilder_.clear(); } mutationCase_ = 0; mutation_ = null; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.service.ext_proc.v3.ExternalProcessorProto.internal_static_envoy_service_ext_proc_v3_BodyMutation_descriptor; } @java.lang.Override public io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation getDefaultInstanceForType() { return io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation build() { io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation buildPartial() { io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation result = new io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation(this); if (bitField0_ != 0) { buildPartial0(result); } buildPartialOneofs(result); onBuilt(); return result; } private void buildPartial0(io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation result) { int from_bitField0_ = bitField0_; } private void buildPartialOneofs(io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation result) { result.mutationCase_ = mutationCase_; result.mutation_ = this.mutation_; if (mutationCase_ == 3 && streamedResponseBuilder_ != null) { result.mutation_ = streamedResponseBuilder_.build(); } } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( 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.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation) { return mergeFrom((io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation other) { if (other == io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation.getDefaultInstance()) return this; switch (other.getMutationCase()) { case BODY: { setBody(other.getBody()); break; } case CLEAR_BODY: { setClearBody(other.getClearBody()); break; } case STREAMED_RESPONSE: { mergeStreamedResponse(other.getStreamedResponse()); break; } case MUTATION_NOT_SET: { break; } } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, 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: { mutation_ = input.readBytes(); mutationCase_ = 1; break; } // case 10 case 16: { mutation_ = input.readBool(); mutationCase_ = 2; break; } // case 16 case 26: { input.readMessage( getStreamedResponseFieldBuilder().getBuilder(), extensionRegistry); mutationCase_ = 3; break; } // case 26 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int mutationCase_ = 0; private java.lang.Object mutation_; public MutationCase getMutationCase() { return MutationCase.forNumber( mutationCase_); } public Builder clearMutation() { mutationCase_ = 0; mutation_ = null; onChanged(); return this; } private int bitField0_; /** *
     * The entire body to replace.
     * Should only be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is not set to ``FULL_DUPLEX_STREAMED``.
     * 
* * bytes body = 1; * @return Whether the body field is set. */ public boolean hasBody() { return mutationCase_ == 1; } /** *
     * The entire body to replace.
     * Should only be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is not set to ``FULL_DUPLEX_STREAMED``.
     * 
* * bytes body = 1; * @return The body. */ public com.google.protobuf.ByteString getBody() { if (mutationCase_ == 1) { return (com.google.protobuf.ByteString) mutation_; } return com.google.protobuf.ByteString.EMPTY; } /** *
     * The entire body to replace.
     * Should only be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is not set to ``FULL_DUPLEX_STREAMED``.
     * 
* * bytes body = 1; * @param value The body to set. * @return This builder for chaining. */ public Builder setBody(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } mutationCase_ = 1; mutation_ = value; onChanged(); return this; } /** *
     * The entire body to replace.
     * Should only be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is not set to ``FULL_DUPLEX_STREAMED``.
     * 
* * bytes body = 1; * @return This builder for chaining. */ public Builder clearBody() { if (mutationCase_ == 1) { mutationCase_ = 0; mutation_ = null; onChanged(); } return this; } /** *
     * Clear the corresponding body chunk.
     * Should only be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is not set to ``FULL_DUPLEX_STREAMED``.
     * Clear the corresponding body chunk.
     * 
* * bool clear_body = 2; * @return Whether the clearBody field is set. */ public boolean hasClearBody() { return mutationCase_ == 2; } /** *
     * Clear the corresponding body chunk.
     * Should only be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is not set to ``FULL_DUPLEX_STREAMED``.
     * Clear the corresponding body chunk.
     * 
* * bool clear_body = 2; * @return The clearBody. */ public boolean getClearBody() { if (mutationCase_ == 2) { return (java.lang.Boolean) mutation_; } return false; } /** *
     * Clear the corresponding body chunk.
     * Should only be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is not set to ``FULL_DUPLEX_STREAMED``.
     * Clear the corresponding body chunk.
     * 
* * bool clear_body = 2; * @param value The clearBody to set. * @return This builder for chaining. */ public Builder setClearBody(boolean value) { mutationCase_ = 2; mutation_ = value; onChanged(); return this; } /** *
     * Clear the corresponding body chunk.
     * Should only be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is not set to ``FULL_DUPLEX_STREAMED``.
     * Clear the corresponding body chunk.
     * 
* * bool clear_body = 2; * @return This builder for chaining. */ public Builder clearClearBody() { if (mutationCase_ == 2) { mutationCase_ = 0; mutation_ = null; onChanged(); } return this; } private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse, io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.Builder, io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponseOrBuilder> streamedResponseBuilder_; /** *
     * Must be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is set to ``FULL_DUPLEX_STREAMED``.
     * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } * @return Whether the streamedResponse field is set. */ @java.lang.Override public boolean hasStreamedResponse() { return mutationCase_ == 3; } /** *
     * Must be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is set to ``FULL_DUPLEX_STREAMED``.
     * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } * @return The streamedResponse. */ @java.lang.Override public io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse getStreamedResponse() { if (streamedResponseBuilder_ == null) { if (mutationCase_ == 3) { return (io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse) mutation_; } return io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.getDefaultInstance(); } else { if (mutationCase_ == 3) { return streamedResponseBuilder_.getMessage(); } return io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.getDefaultInstance(); } } /** *
     * Must be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is set to ``FULL_DUPLEX_STREAMED``.
     * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } */ public Builder setStreamedResponse(io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse value) { if (streamedResponseBuilder_ == null) { if (value == null) { throw new NullPointerException(); } mutation_ = value; onChanged(); } else { streamedResponseBuilder_.setMessage(value); } mutationCase_ = 3; return this; } /** *
     * Must be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is set to ``FULL_DUPLEX_STREAMED``.
     * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } */ public Builder setStreamedResponse( io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.Builder builderForValue) { if (streamedResponseBuilder_ == null) { mutation_ = builderForValue.build(); onChanged(); } else { streamedResponseBuilder_.setMessage(builderForValue.build()); } mutationCase_ = 3; return this; } /** *
     * Must be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is set to ``FULL_DUPLEX_STREAMED``.
     * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } */ public Builder mergeStreamedResponse(io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse value) { if (streamedResponseBuilder_ == null) { if (mutationCase_ == 3 && mutation_ != io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.getDefaultInstance()) { mutation_ = io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.newBuilder((io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse) mutation_) .mergeFrom(value).buildPartial(); } else { mutation_ = value; } onChanged(); } else { if (mutationCase_ == 3) { streamedResponseBuilder_.mergeFrom(value); } else { streamedResponseBuilder_.setMessage(value); } } mutationCase_ = 3; return this; } /** *
     * Must be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is set to ``FULL_DUPLEX_STREAMED``.
     * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } */ public Builder clearStreamedResponse() { if (streamedResponseBuilder_ == null) { if (mutationCase_ == 3) { mutationCase_ = 0; mutation_ = null; onChanged(); } } else { if (mutationCase_ == 3) { mutationCase_ = 0; mutation_ = null; } streamedResponseBuilder_.clear(); } return this; } /** *
     * Must be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is set to ``FULL_DUPLEX_STREAMED``.
     * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } */ public io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.Builder getStreamedResponseBuilder() { return getStreamedResponseFieldBuilder().getBuilder(); } /** *
     * Must be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is set to ``FULL_DUPLEX_STREAMED``.
     * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } */ @java.lang.Override public io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponseOrBuilder getStreamedResponseOrBuilder() { if ((mutationCase_ == 3) && (streamedResponseBuilder_ != null)) { return streamedResponseBuilder_.getMessageOrBuilder(); } else { if (mutationCase_ == 3) { return (io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse) mutation_; } return io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.getDefaultInstance(); } } /** *
     * Must be used when the corresponding ``BodySendMode`` in the
     * :ref:`processing_mode <envoy_v3_api_field_extensions.filters.http.ext_proc.v3.ExternalProcessor.processing_mode>`
     * is set to ``FULL_DUPLEX_STREAMED``.
     * 
* * .envoy.service.ext_proc.v3.StreamedBodyResponse streamed_response = 3 [(.xds.annotations.v3.field_status) = { ... } */ private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse, io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.Builder, io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponseOrBuilder> getStreamedResponseFieldBuilder() { if (streamedResponseBuilder_ == null) { if (!(mutationCase_ == 3)) { mutation_ = io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.getDefaultInstance(); } streamedResponseBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse, io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse.Builder, io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponseOrBuilder>( (io.envoyproxy.envoy.service.ext_proc.v3.StreamedBodyResponse) mutation_, getParentForChildren(), isClean()); mutation_ = null; } mutationCase_ = 3; onChanged(); return streamedResponseBuilder_; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:envoy.service.ext_proc.v3.BodyMutation) } // @@protoc_insertion_point(class_scope:envoy.service.ext_proc.v3.BodyMutation) private static final io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation(); } public static io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public BodyMutation parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy