io.envoyproxy.envoy.config.trace.v3.Tracing Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/trace/v3/http_tracer.proto
// Protobuf Java Version: 3.25.5
package io.envoyproxy.envoy.config.trace.v3;
/**
*
* The tracing configuration specifies settings for an HTTP tracer provider used by Envoy.
*
* Envoy may support other tracers in the future, but right now the HTTP tracer is the only one
* supported.
*
* .. attention::
*
* Use of this message type has been deprecated in favor of direct use of
* :ref:`Tracing.Http <envoy_v3_api_msg_config.trace.v3.Tracing.Http>`.
*
*
* Protobuf type {@code envoy.config.trace.v3.Tracing}
*/
public final class Tracing extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:envoy.config.trace.v3.Tracing)
TracingOrBuilder {
private static final long serialVersionUID = 0L;
// Use Tracing.newBuilder() to construct.
private Tracing(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Tracing() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new Tracing();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.config.trace.v3.Tracing.class, io.envoyproxy.envoy.config.trace.v3.Tracing.Builder.class);
}
public interface HttpOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.trace.v3.Tracing.Http)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the HTTP trace driver to instantiate. The name must match a
* supported HTTP trace driver.
* See the :ref:`extensions listed in typed_config below <extension_category_envoy.tracers>` for the default list of the HTTP trace driver.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the HTTP trace driver to instantiate. The name must match a
* supported HTTP trace driver.
* See the :ref:`extensions listed in typed_config below <extension_category_envoy.tracers>` for the default list of the HTTP trace driver.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* .google.protobuf.Any typed_config = 3;
* @return Whether the typedConfig field is set.
*/
boolean hasTypedConfig();
/**
* .google.protobuf.Any typed_config = 3;
* @return The typedConfig.
*/
com.google.protobuf.Any getTypedConfig();
/**
* .google.protobuf.Any typed_config = 3;
*/
com.google.protobuf.AnyOrBuilder getTypedConfigOrBuilder();
io.envoyproxy.envoy.config.trace.v3.Tracing.Http.ConfigTypeCase getConfigTypeCase();
}
/**
*
* Configuration for an HTTP tracer provider used by Envoy.
*
* The configuration is defined by the
* :ref:`HttpConnectionManager.Tracing <envoy_v3_api_msg_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.Tracing>`
* :ref:`provider <envoy_v3_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.Tracing.provider>`
* field.
*
*
* Protobuf type {@code envoy.config.trace.v3.Tracing.Http}
*/
public static final class Http extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:envoy.config.trace.v3.Tracing.Http)
HttpOrBuilder {
private static final long serialVersionUID = 0L;
// Use Http.newBuilder() to construct.
private Http(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Http() {
name_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new Http();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_Http_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_Http_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.config.trace.v3.Tracing.Http.class, io.envoyproxy.envoy.config.trace.v3.Tracing.Http.Builder.class);
}
private int configTypeCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object configType_;
public enum ConfigTypeCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
TYPED_CONFIG(3),
CONFIGTYPE_NOT_SET(0);
private final int value;
private ConfigTypeCase(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 ConfigTypeCase valueOf(int value) {
return forNumber(value);
}
public static ConfigTypeCase forNumber(int value) {
switch (value) {
case 3: return TYPED_CONFIG;
case 0: return CONFIGTYPE_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public ConfigTypeCase
getConfigTypeCase() {
return ConfigTypeCase.forNumber(
configTypeCase_);
}
public static final int NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
/**
*
* The name of the HTTP trace driver to instantiate. The name must match a
* supported HTTP trace driver.
* See the :ref:`extensions listed in typed_config below <extension_category_envoy.tracers>` for the default list of the HTTP trace driver.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
}
}
/**
*
* The name of the HTTP trace driver to instantiate. The name must match a
* supported HTTP trace driver.
* See the :ref:`extensions listed in typed_config below <extension_category_envoy.tracers>` for the default list of the HTTP trace driver.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TYPED_CONFIG_FIELD_NUMBER = 3;
/**
* .google.protobuf.Any typed_config = 3;
* @return Whether the typedConfig field is set.
*/
@java.lang.Override
public boolean hasTypedConfig() {
return configTypeCase_ == 3;
}
/**
* .google.protobuf.Any typed_config = 3;
* @return The typedConfig.
*/
@java.lang.Override
public com.google.protobuf.Any getTypedConfig() {
if (configTypeCase_ == 3) {
return (com.google.protobuf.Any) configType_;
}
return com.google.protobuf.Any.getDefaultInstance();
}
/**
* .google.protobuf.Any typed_config = 3;
*/
@java.lang.Override
public com.google.protobuf.AnyOrBuilder getTypedConfigOrBuilder() {
if (configTypeCase_ == 3) {
return (com.google.protobuf.Any) configType_;
}
return com.google.protobuf.Any.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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
if (configTypeCase_ == 3) {
output.writeMessage(3, (com.google.protobuf.Any) configType_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
if (configTypeCase_ == 3) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, (com.google.protobuf.Any) configType_);
}
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.config.trace.v3.Tracing.Http)) {
return super.equals(obj);
}
io.envoyproxy.envoy.config.trace.v3.Tracing.Http other = (io.envoyproxy.envoy.config.trace.v3.Tracing.Http) obj;
if (!getName()
.equals(other.getName())) return false;
if (!getConfigTypeCase().equals(other.getConfigTypeCase())) return false;
switch (configTypeCase_) {
case 3:
if (!getTypedConfig()
.equals(other.getTypedConfig())) 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();
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
switch (configTypeCase_) {
case 3:
hash = (37 * hash) + TYPED_CONFIG_FIELD_NUMBER;
hash = (53 * hash) + getTypedConfig().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing.Http parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing.Http 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.config.trace.v3.Tracing.Http parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing.Http 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.config.trace.v3.Tracing.Http parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing.Http parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing.Http parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing.Http 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.config.trace.v3.Tracing.Http parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing.Http 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.config.trace.v3.Tracing.Http parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing.Http 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.config.trace.v3.Tracing.Http 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;
}
/**
*
* Configuration for an HTTP tracer provider used by Envoy.
*
* The configuration is defined by the
* :ref:`HttpConnectionManager.Tracing <envoy_v3_api_msg_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.Tracing>`
* :ref:`provider <envoy_v3_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.Tracing.provider>`
* field.
*
*
* Protobuf type {@code envoy.config.trace.v3.Tracing.Http}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:envoy.config.trace.v3.Tracing.Http)
io.envoyproxy.envoy.config.trace.v3.Tracing.HttpOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_Http_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_Http_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.config.trace.v3.Tracing.Http.class, io.envoyproxy.envoy.config.trace.v3.Tracing.Http.Builder.class);
}
// Construct using io.envoyproxy.envoy.config.trace.v3.Tracing.Http.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
name_ = "";
if (typedConfigBuilder_ != null) {
typedConfigBuilder_.clear();
}
configTypeCase_ = 0;
configType_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_Http_descriptor;
}
@java.lang.Override
public io.envoyproxy.envoy.config.trace.v3.Tracing.Http getDefaultInstanceForType() {
return io.envoyproxy.envoy.config.trace.v3.Tracing.Http.getDefaultInstance();
}
@java.lang.Override
public io.envoyproxy.envoy.config.trace.v3.Tracing.Http build() {
io.envoyproxy.envoy.config.trace.v3.Tracing.Http result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.envoyproxy.envoy.config.trace.v3.Tracing.Http buildPartial() {
io.envoyproxy.envoy.config.trace.v3.Tracing.Http result = new io.envoyproxy.envoy.config.trace.v3.Tracing.Http(this);
if (bitField0_ != 0) { buildPartial0(result); }
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(io.envoyproxy.envoy.config.trace.v3.Tracing.Http result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.name_ = name_;
}
}
private void buildPartialOneofs(io.envoyproxy.envoy.config.trace.v3.Tracing.Http result) {
result.configTypeCase_ = configTypeCase_;
result.configType_ = this.configType_;
if (configTypeCase_ == 3 &&
typedConfigBuilder_ != null) {
result.configType_ = typedConfigBuilder_.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.config.trace.v3.Tracing.Http) {
return mergeFrom((io.envoyproxy.envoy.config.trace.v3.Tracing.Http)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.envoyproxy.envoy.config.trace.v3.Tracing.Http other) {
if (other == io.envoyproxy.envoy.config.trace.v3.Tracing.Http.getDefaultInstance()) return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
bitField0_ |= 0x00000001;
onChanged();
}
switch (other.getConfigTypeCase()) {
case TYPED_CONFIG: {
mergeTypedConfig(other.getTypedConfig());
break;
}
case CONFIGTYPE_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: {
name_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 26: {
input.readMessage(
getTypedConfigFieldBuilder().getBuilder(),
extensionRegistry);
configTypeCase_ = 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 configTypeCase_ = 0;
private java.lang.Object configType_;
public ConfigTypeCase
getConfigTypeCase() {
return ConfigTypeCase.forNumber(
configTypeCase_);
}
public Builder clearConfigType() {
configTypeCase_ = 0;
configType_ = null;
onChanged();
return this;
}
private int bitField0_;
private java.lang.Object name_ = "";
/**
*
* The name of the HTTP trace driver to instantiate. The name must match a
* supported HTTP trace driver.
* See the :ref:`extensions listed in typed_config below <extension_category_envoy.tracers>` for the default list of the HTTP trace driver.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The name of the HTTP trace driver to instantiate. The name must match a
* supported HTTP trace driver.
* See the :ref:`extensions listed in typed_config below <extension_category_envoy.tracers>` for the default list of the HTTP trace driver.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return The bytes for name.
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The name of the HTTP trace driver to instantiate. The name must match a
* supported HTTP trace driver.
* See the :ref:`extensions listed in typed_config below <extension_category_envoy.tracers>` for the default list of the HTTP trace driver.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The name of the HTTP trace driver to instantiate. The name must match a
* supported HTTP trace driver.
* See the :ref:`extensions listed in typed_config below <extension_category_envoy.tracers>` for the default list of the HTTP trace driver.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
* The name of the HTTP trace driver to instantiate. The name must match a
* supported HTTP trace driver.
* See the :ref:`extensions listed in typed_config below <extension_category_envoy.tracers>` for the default list of the HTTP trace driver.
*
*
* string name = 1 [(.validate.rules) = { ... }
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Any, com.google.protobuf.Any.Builder, com.google.protobuf.AnyOrBuilder> typedConfigBuilder_;
/**
* .google.protobuf.Any typed_config = 3;
* @return Whether the typedConfig field is set.
*/
@java.lang.Override
public boolean hasTypedConfig() {
return configTypeCase_ == 3;
}
/**
* .google.protobuf.Any typed_config = 3;
* @return The typedConfig.
*/
@java.lang.Override
public com.google.protobuf.Any getTypedConfig() {
if (typedConfigBuilder_ == null) {
if (configTypeCase_ == 3) {
return (com.google.protobuf.Any) configType_;
}
return com.google.protobuf.Any.getDefaultInstance();
} else {
if (configTypeCase_ == 3) {
return typedConfigBuilder_.getMessage();
}
return com.google.protobuf.Any.getDefaultInstance();
}
}
/**
* .google.protobuf.Any typed_config = 3;
*/
public Builder setTypedConfig(com.google.protobuf.Any value) {
if (typedConfigBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
configType_ = value;
onChanged();
} else {
typedConfigBuilder_.setMessage(value);
}
configTypeCase_ = 3;
return this;
}
/**
* .google.protobuf.Any typed_config = 3;
*/
public Builder setTypedConfig(
com.google.protobuf.Any.Builder builderForValue) {
if (typedConfigBuilder_ == null) {
configType_ = builderForValue.build();
onChanged();
} else {
typedConfigBuilder_.setMessage(builderForValue.build());
}
configTypeCase_ = 3;
return this;
}
/**
* .google.protobuf.Any typed_config = 3;
*/
public Builder mergeTypedConfig(com.google.protobuf.Any value) {
if (typedConfigBuilder_ == null) {
if (configTypeCase_ == 3 &&
configType_ != com.google.protobuf.Any.getDefaultInstance()) {
configType_ = com.google.protobuf.Any.newBuilder((com.google.protobuf.Any) configType_)
.mergeFrom(value).buildPartial();
} else {
configType_ = value;
}
onChanged();
} else {
if (configTypeCase_ == 3) {
typedConfigBuilder_.mergeFrom(value);
} else {
typedConfigBuilder_.setMessage(value);
}
}
configTypeCase_ = 3;
return this;
}
/**
* .google.protobuf.Any typed_config = 3;
*/
public Builder clearTypedConfig() {
if (typedConfigBuilder_ == null) {
if (configTypeCase_ == 3) {
configTypeCase_ = 0;
configType_ = null;
onChanged();
}
} else {
if (configTypeCase_ == 3) {
configTypeCase_ = 0;
configType_ = null;
}
typedConfigBuilder_.clear();
}
return this;
}
/**
* .google.protobuf.Any typed_config = 3;
*/
public com.google.protobuf.Any.Builder getTypedConfigBuilder() {
return getTypedConfigFieldBuilder().getBuilder();
}
/**
* .google.protobuf.Any typed_config = 3;
*/
@java.lang.Override
public com.google.protobuf.AnyOrBuilder getTypedConfigOrBuilder() {
if ((configTypeCase_ == 3) && (typedConfigBuilder_ != null)) {
return typedConfigBuilder_.getMessageOrBuilder();
} else {
if (configTypeCase_ == 3) {
return (com.google.protobuf.Any) configType_;
}
return com.google.protobuf.Any.getDefaultInstance();
}
}
/**
* .google.protobuf.Any typed_config = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Any, com.google.protobuf.Any.Builder, com.google.protobuf.AnyOrBuilder>
getTypedConfigFieldBuilder() {
if (typedConfigBuilder_ == null) {
if (!(configTypeCase_ == 3)) {
configType_ = com.google.protobuf.Any.getDefaultInstance();
}
typedConfigBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Any, com.google.protobuf.Any.Builder, com.google.protobuf.AnyOrBuilder>(
(com.google.protobuf.Any) configType_,
getParentForChildren(),
isClean());
configType_ = null;
}
configTypeCase_ = 3;
onChanged();
return typedConfigBuilder_;
}
@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.config.trace.v3.Tracing.Http)
}
// @@protoc_insertion_point(class_scope:envoy.config.trace.v3.Tracing.Http)
private static final io.envoyproxy.envoy.config.trace.v3.Tracing.Http DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.envoyproxy.envoy.config.trace.v3.Tracing.Http();
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing.Http getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Http 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.config.trace.v3.Tracing.Http getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int bitField0_;
public static final int HTTP_FIELD_NUMBER = 1;
private io.envoyproxy.envoy.config.trace.v3.Tracing.Http http_;
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
* @return Whether the http field is set.
*/
@java.lang.Override
public boolean hasHttp() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
* @return The http.
*/
@java.lang.Override
public io.envoyproxy.envoy.config.trace.v3.Tracing.Http getHttp() {
return http_ == null ? io.envoyproxy.envoy.config.trace.v3.Tracing.Http.getDefaultInstance() : http_;
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
*/
@java.lang.Override
public io.envoyproxy.envoy.config.trace.v3.Tracing.HttpOrBuilder getHttpOrBuilder() {
return http_ == null ? io.envoyproxy.envoy.config.trace.v3.Tracing.Http.getDefaultInstance() : http_;
}
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 (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getHttp());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getHttp());
}
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.config.trace.v3.Tracing)) {
return super.equals(obj);
}
io.envoyproxy.envoy.config.trace.v3.Tracing other = (io.envoyproxy.envoy.config.trace.v3.Tracing) obj;
if (hasHttp() != other.hasHttp()) return false;
if (hasHttp()) {
if (!getHttp()
.equals(other.getHttp())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasHttp()) {
hash = (37 * hash) + HTTP_FIELD_NUMBER;
hash = (53 * hash) + getHttp().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing 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.config.trace.v3.Tracing parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing 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.config.trace.v3.Tracing parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing 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.config.trace.v3.Tracing parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing 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.config.trace.v3.Tracing parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing 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.config.trace.v3.Tracing 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;
}
/**
*
* The tracing configuration specifies settings for an HTTP tracer provider used by Envoy.
*
* Envoy may support other tracers in the future, but right now the HTTP tracer is the only one
* supported.
*
* .. attention::
*
* Use of this message type has been deprecated in favor of direct use of
* :ref:`Tracing.Http <envoy_v3_api_msg_config.trace.v3.Tracing.Http>`.
*
*
* Protobuf type {@code envoy.config.trace.v3.Tracing}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:envoy.config.trace.v3.Tracing)
io.envoyproxy.envoy.config.trace.v3.TracingOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.config.trace.v3.Tracing.class, io.envoyproxy.envoy.config.trace.v3.Tracing.Builder.class);
}
// Construct using io.envoyproxy.envoy.config.trace.v3.Tracing.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getHttpFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
http_ = null;
if (httpBuilder_ != null) {
httpBuilder_.dispose();
httpBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.envoyproxy.envoy.config.trace.v3.HttpTracerProto.internal_static_envoy_config_trace_v3_Tracing_descriptor;
}
@java.lang.Override
public io.envoyproxy.envoy.config.trace.v3.Tracing getDefaultInstanceForType() {
return io.envoyproxy.envoy.config.trace.v3.Tracing.getDefaultInstance();
}
@java.lang.Override
public io.envoyproxy.envoy.config.trace.v3.Tracing build() {
io.envoyproxy.envoy.config.trace.v3.Tracing result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.envoyproxy.envoy.config.trace.v3.Tracing buildPartial() {
io.envoyproxy.envoy.config.trace.v3.Tracing result = new io.envoyproxy.envoy.config.trace.v3.Tracing(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(io.envoyproxy.envoy.config.trace.v3.Tracing result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.http_ = httpBuilder_ == null
? http_
: httpBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@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.config.trace.v3.Tracing) {
return mergeFrom((io.envoyproxy.envoy.config.trace.v3.Tracing)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.envoyproxy.envoy.config.trace.v3.Tracing other) {
if (other == io.envoyproxy.envoy.config.trace.v3.Tracing.getDefaultInstance()) return this;
if (other.hasHttp()) {
mergeHttp(other.getHttp());
}
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: {
input.readMessage(
getHttpFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
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 bitField0_;
private io.envoyproxy.envoy.config.trace.v3.Tracing.Http http_;
private com.google.protobuf.SingleFieldBuilderV3<
io.envoyproxy.envoy.config.trace.v3.Tracing.Http, io.envoyproxy.envoy.config.trace.v3.Tracing.Http.Builder, io.envoyproxy.envoy.config.trace.v3.Tracing.HttpOrBuilder> httpBuilder_;
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
* @return Whether the http field is set.
*/
public boolean hasHttp() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
* @return The http.
*/
public io.envoyproxy.envoy.config.trace.v3.Tracing.Http getHttp() {
if (httpBuilder_ == null) {
return http_ == null ? io.envoyproxy.envoy.config.trace.v3.Tracing.Http.getDefaultInstance() : http_;
} else {
return httpBuilder_.getMessage();
}
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
*/
public Builder setHttp(io.envoyproxy.envoy.config.trace.v3.Tracing.Http value) {
if (httpBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
http_ = value;
} else {
httpBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
*/
public Builder setHttp(
io.envoyproxy.envoy.config.trace.v3.Tracing.Http.Builder builderForValue) {
if (httpBuilder_ == null) {
http_ = builderForValue.build();
} else {
httpBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
*/
public Builder mergeHttp(io.envoyproxy.envoy.config.trace.v3.Tracing.Http value) {
if (httpBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
http_ != null &&
http_ != io.envoyproxy.envoy.config.trace.v3.Tracing.Http.getDefaultInstance()) {
getHttpBuilder().mergeFrom(value);
} else {
http_ = value;
}
} else {
httpBuilder_.mergeFrom(value);
}
if (http_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
*/
public Builder clearHttp() {
bitField0_ = (bitField0_ & ~0x00000001);
http_ = null;
if (httpBuilder_ != null) {
httpBuilder_.dispose();
httpBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
*/
public io.envoyproxy.envoy.config.trace.v3.Tracing.Http.Builder getHttpBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getHttpFieldBuilder().getBuilder();
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
*/
public io.envoyproxy.envoy.config.trace.v3.Tracing.HttpOrBuilder getHttpOrBuilder() {
if (httpBuilder_ != null) {
return httpBuilder_.getMessageOrBuilder();
} else {
return http_ == null ?
io.envoyproxy.envoy.config.trace.v3.Tracing.Http.getDefaultInstance() : http_;
}
}
/**
*
* Provides configuration for the HTTP tracer.
*
*
* .envoy.config.trace.v3.Tracing.Http http = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.envoyproxy.envoy.config.trace.v3.Tracing.Http, io.envoyproxy.envoy.config.trace.v3.Tracing.Http.Builder, io.envoyproxy.envoy.config.trace.v3.Tracing.HttpOrBuilder>
getHttpFieldBuilder() {
if (httpBuilder_ == null) {
httpBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.envoyproxy.envoy.config.trace.v3.Tracing.Http, io.envoyproxy.envoy.config.trace.v3.Tracing.Http.Builder, io.envoyproxy.envoy.config.trace.v3.Tracing.HttpOrBuilder>(
getHttp(),
getParentForChildren(),
isClean());
http_ = null;
}
return httpBuilder_;
}
@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.config.trace.v3.Tracing)
}
// @@protoc_insertion_point(class_scope:envoy.config.trace.v3.Tracing)
private static final io.envoyproxy.envoy.config.trace.v3.Tracing DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.envoyproxy.envoy.config.trace.v3.Tracing();
}
public static io.envoyproxy.envoy.config.trace.v3.Tracing getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Tracing 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.config.trace.v3.Tracing getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy