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.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/service/ext_proc/v3/external_processor.proto
package io.envoyproxy.envoy.service.ext_proc.v3;
/**
*
* Replace the entire message body chunk received in the corresponding
* HttpBody message with this new body, or clear the body.
*
*
* 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();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private BodyMutation(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
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 16: {
mutation_ = input.readBool();
mutationCase_ = 2;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
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;
private java.lang.Object mutation_;
public enum MutationCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
BODY(1),
CLEAR_BODY(2),
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 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
*
*
* bytes body = 1;
* @return Whether the body field is set.
*/
@java.lang.Override
public boolean hasBody() {
return mutationCase_ == 1;
}
/**
*
* The entire body to replace
*
*
* 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
*
*
* 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
*
*
* bool clear_body = 2;
* @return The clearBody.
*/
@java.lang.Override
public boolean getClearBody() {
if (mutationCase_ == 2) {
return (java.lang.Boolean) mutation_;
}
return false;
}
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_));
}
unknownFields.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_));
}
size += unknownFields.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 0:
default:
}
if (!unknownFields.equals(other.unknownFields)) 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 0:
default:
}
hash = (29 * hash) + unknownFields.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;
}
/**
*
* Replace the entire message body chunk received in the corresponding
* HttpBody message with this new body, or clear the body.
*
*
* 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() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.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 (mutationCase_ == 1) {
result.mutation_ = mutation_;
}
if (mutationCase_ == 2) {
result.mutation_ = mutation_;
}
result.mutationCase_ = mutationCase_;
onBuilt();
return result;
}
@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 MUTATION_NOT_SET: {
break;
}
}
this.mergeUnknownFields(other.unknownFields);
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 {
io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.envoyproxy.envoy.service.ext_proc.v3.BodyMutation) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
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;
}
/**
*
* The entire body to replace
*
*
* bytes body = 1;
* @return Whether the body field is set.
*/
public boolean hasBody() {
return mutationCase_ == 1;
}
/**
*
* The entire body to replace
*
*
* 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
*
*
* 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
*
*
* 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
*
*
* bool clear_body = 2;
* @return Whether the clearBody field is set.
*/
public boolean hasClearBody() {
return mutationCase_ == 2;
}
/**
*
* 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
*
*
* 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
*
*
* bool clear_body = 2;
* @return This builder for chaining.
*/
public Builder clearClearBody() {
if (mutationCase_ == 2) {
mutationCase_ = 0;
mutation_ = null;
onChanged();
}
return this;
}
@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 {
return new BodyMutation(input, extensionRegistry);
}
};
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;
}
}