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/auth/v2/external_auth.proto
package io.envoyproxy.envoy.service.auth.v2;
/**
*
* HTTP attributes for an ok response.
*
*
* Protobuf type {@code envoy.service.auth.v2.OkHttpResponse}
*/
public final class OkHttpResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:envoy.service.auth.v2.OkHttpResponse)
OkHttpResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use OkHttpResponse.newBuilder() to construct.
private OkHttpResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private OkHttpResponse() {
headers_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new OkHttpResponse();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private OkHttpResponse(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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 18: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
headers_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
headers_.add(
input.readMessage(io.envoyproxy.envoy.api.v2.core.HeaderValueOption.parser(), extensionRegistry));
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 {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
headers_ = java.util.Collections.unmodifiableList(headers_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.envoyproxy.envoy.service.auth.v2.ExternalAuthProto.internal_static_envoy_service_auth_v2_OkHttpResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.service.auth.v2.ExternalAuthProto.internal_static_envoy_service_auth_v2_OkHttpResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.service.auth.v2.OkHttpResponse.class, io.envoyproxy.envoy.service.auth.v2.OkHttpResponse.Builder.class);
}
public static final int HEADERS_FIELD_NUMBER = 2;
private java.util.List headers_;
/**
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
*
* repeated .envoy.api.v2.core.HeaderValueOption headers = 2;
*/
@java.lang.Override
public int getHeadersCount() {
return headers_.size();
}
/**
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
*
* repeated .envoy.api.v2.core.HeaderValueOption headers = 2;
*/
@java.lang.Override
public io.envoyproxy.envoy.api.v2.core.HeaderValueOptionOrBuilder getHeadersOrBuilder(
int index) {
return headers_.get(index);
}
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 {
for (int i = 0; i < headers_.size(); i++) {
output.writeMessage(2, headers_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < headers_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, headers_.get(i));
}
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.auth.v2.OkHttpResponse)) {
return super.equals(obj);
}
io.envoyproxy.envoy.service.auth.v2.OkHttpResponse other = (io.envoyproxy.envoy.service.auth.v2.OkHttpResponse) obj;
if (!getHeadersList()
.equals(other.getHeadersList())) return false;
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();
if (getHeadersCount() > 0) {
hash = (37 * hash) + HEADERS_FIELD_NUMBER;
hash = (53 * hash) + getHeadersList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.envoyproxy.envoy.service.auth.v2.OkHttpResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.service.auth.v2.OkHttpResponse 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.auth.v2.OkHttpResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.service.auth.v2.OkHttpResponse 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.auth.v2.OkHttpResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.service.auth.v2.OkHttpResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.envoyproxy.envoy.service.auth.v2.OkHttpResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.service.auth.v2.OkHttpResponse 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.auth.v2.OkHttpResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.service.auth.v2.OkHttpResponse 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.auth.v2.OkHttpResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.service.auth.v2.OkHttpResponse 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.auth.v2.OkHttpResponse 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;
}
/**
*
* HTTP attributes for an ok response.
*
*
* Protobuf type {@code envoy.service.auth.v2.OkHttpResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:envoy.service.auth.v2.OkHttpResponse)
io.envoyproxy.envoy.service.auth.v2.OkHttpResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.envoyproxy.envoy.service.auth.v2.ExternalAuthProto.internal_static_envoy_service_auth_v2_OkHttpResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.service.auth.v2.ExternalAuthProto.internal_static_envoy_service_auth_v2_OkHttpResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.service.auth.v2.OkHttpResponse.class, io.envoyproxy.envoy.service.auth.v2.OkHttpResponse.Builder.class);
}
// Construct using io.envoyproxy.envoy.service.auth.v2.OkHttpResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getHeadersFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (headersBuilder_ == null) {
headers_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
headersBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.envoyproxy.envoy.service.auth.v2.ExternalAuthProto.internal_static_envoy_service_auth_v2_OkHttpResponse_descriptor;
}
@java.lang.Override
public io.envoyproxy.envoy.service.auth.v2.OkHttpResponse getDefaultInstanceForType() {
return io.envoyproxy.envoy.service.auth.v2.OkHttpResponse.getDefaultInstance();
}
@java.lang.Override
public io.envoyproxy.envoy.service.auth.v2.OkHttpResponse build() {
io.envoyproxy.envoy.service.auth.v2.OkHttpResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.envoyproxy.envoy.service.auth.v2.OkHttpResponse buildPartial() {
io.envoyproxy.envoy.service.auth.v2.OkHttpResponse result = new io.envoyproxy.envoy.service.auth.v2.OkHttpResponse(this);
int from_bitField0_ = bitField0_;
if (headersBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
headers_ = java.util.Collections.unmodifiableList(headers_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.headers_ = headers_;
} else {
result.headers_ = headersBuilder_.build();
}
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.auth.v2.OkHttpResponse) {
return mergeFrom((io.envoyproxy.envoy.service.auth.v2.OkHttpResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.envoyproxy.envoy.service.auth.v2.OkHttpResponse other) {
if (other == io.envoyproxy.envoy.service.auth.v2.OkHttpResponse.getDefaultInstance()) return this;
if (headersBuilder_ == null) {
if (!other.headers_.isEmpty()) {
if (headers_.isEmpty()) {
headers_ = other.headers_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureHeadersIsMutable();
headers_.addAll(other.headers_);
}
onChanged();
}
} else {
if (!other.headers_.isEmpty()) {
if (headersBuilder_.isEmpty()) {
headersBuilder_.dispose();
headersBuilder_ = null;
headers_ = other.headers_;
bitField0_ = (bitField0_ & ~0x00000001);
headersBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getHeadersFieldBuilder() : null;
} else {
headersBuilder_.addAllMessages(other.headers_);
}
}
}
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.auth.v2.OkHttpResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.envoyproxy.envoy.service.auth.v2.OkHttpResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List headers_ =
java.util.Collections.emptyList();
private void ensureHeadersIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
headers_ = new java.util.ArrayList(headers_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.envoyproxy.envoy.api.v2.core.HeaderValueOption, io.envoyproxy.envoy.api.v2.core.HeaderValueOption.Builder, io.envoyproxy.envoy.api.v2.core.HeaderValueOptionOrBuilder> headersBuilder_;
/**
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
*
* repeated .envoy.api.v2.core.HeaderValueOption headers = 2;
*/
public int getHeadersCount() {
if (headersBuilder_ == null) {
return headers_.size();
} else {
return headersBuilder_.getCount();
}
}
/**
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
*
* repeated .envoy.api.v2.core.HeaderValueOption headers = 2;
*/
public Builder setHeaders(
int index, io.envoyproxy.envoy.api.v2.core.HeaderValueOption value) {
if (headersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureHeadersIsMutable();
headers_.set(index, value);
onChanged();
} else {
headersBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
*
* repeated .envoy.api.v2.core.HeaderValueOption headers = 2;
*/
public Builder addHeaders(io.envoyproxy.envoy.api.v2.core.HeaderValueOption value) {
if (headersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureHeadersIsMutable();
headers_.add(value);
onChanged();
} else {
headersBuilder_.addMessage(value);
}
return this;
}
/**
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
*
* repeated .envoy.api.v2.core.HeaderValueOption headers = 2;
*/
public Builder addHeaders(
int index, io.envoyproxy.envoy.api.v2.core.HeaderValueOption value) {
if (headersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureHeadersIsMutable();
headers_.add(index, value);
onChanged();
} else {
headersBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
*
* repeated .envoy.api.v2.core.HeaderValueOption headers = 2;
*/
public io.envoyproxy.envoy.api.v2.core.HeaderValueOption.Builder getHeadersBuilder(
int index) {
return getHeadersFieldBuilder().getBuilder(index);
}
/**
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
*
* repeated .envoy.api.v2.core.HeaderValueOption headers = 2;
*/
public io.envoyproxy.envoy.api.v2.core.HeaderValueOptionOrBuilder getHeadersOrBuilder(
int index) {
if (headersBuilder_ == null) {
return headers_.get(index); } else {
return headersBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
* HTTP entity headers in addition to the original request headers. This allows the authorization
* service to append, to add or to override headers from the original request before
* dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
* false when used in this message. By setting the `append` field to `true`,
* the filter will append the correspondent header value to the matched request header.
* By leaving `append` as false, the filter will either add a new header, or override an existing
* one if there is a match.
*
*
* repeated .envoy.api.v2.core.HeaderValueOption headers = 2;
*/
public java.util.List
getHeadersBuilderList() {
return getHeadersFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.envoyproxy.envoy.api.v2.core.HeaderValueOption, io.envoyproxy.envoy.api.v2.core.HeaderValueOption.Builder, io.envoyproxy.envoy.api.v2.core.HeaderValueOptionOrBuilder>
getHeadersFieldBuilder() {
if (headersBuilder_ == null) {
headersBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.envoyproxy.envoy.api.v2.core.HeaderValueOption, io.envoyproxy.envoy.api.v2.core.HeaderValueOption.Builder, io.envoyproxy.envoy.api.v2.core.HeaderValueOptionOrBuilder>(
headers_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
headers_ = null;
}
return headersBuilder_;
}
@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.auth.v2.OkHttpResponse)
}
// @@protoc_insertion_point(class_scope:envoy.service.auth.v2.OkHttpResponse)
private static final io.envoyproxy.envoy.service.auth.v2.OkHttpResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.envoyproxy.envoy.service.auth.v2.OkHttpResponse();
}
public static io.envoyproxy.envoy.service.auth.v2.OkHttpResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public OkHttpResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new OkHttpResponse(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.auth.v2.OkHttpResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}