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

io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: envoy/service/auth/v3alpha/external_auth.proto

package io.envoyproxy.envoy.service.auth.v3alpha;

/**
 * 
 * HTTP attributes for a denied response.
 * 
* * Protobuf type {@code envoy.service.auth.v3alpha.DeniedHttpResponse} */ public final class DeniedHttpResponse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:envoy.service.auth.v3alpha.DeniedHttpResponse) DeniedHttpResponseOrBuilder { private static final long serialVersionUID = 0L; // Use DeniedHttpResponse.newBuilder() to construct. private DeniedHttpResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private DeniedHttpResponse() { headers_ = java.util.Collections.emptyList(); body_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new DeniedHttpResponse(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private DeniedHttpResponse( 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 10: { io.envoyproxy.envoy.type.HttpStatus.Builder subBuilder = null; if (status_ != null) { subBuilder = status_.toBuilder(); } status_ = input.readMessage(io.envoyproxy.envoy.type.HttpStatus.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(status_); status_ = subBuilder.buildPartial(); } break; } case 18: { if (!((mutable_bitField0_ & 0x00000001) != 0)) { headers_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000001; } headers_.add( input.readMessage(io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.parser(), extensionRegistry)); break; } case 26: { java.lang.String s = input.readStringRequireUtf8(); body_ = s; break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.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.v3alpha.ExternalAuthProto.internal_static_envoy_service_auth_v3alpha_DeniedHttpResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.auth.v3alpha.ExternalAuthProto.internal_static_envoy_service_auth_v3alpha_DeniedHttpResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse.class, io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse.Builder.class); } public static final int STATUS_FIELD_NUMBER = 1; private io.envoyproxy.envoy.type.HttpStatus status_; /** *
   * This field allows the authorization service to send a HTTP response status
   * code to the downstream client other than 403 (Forbidden).
   * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public boolean hasStatus() { return status_ != null; } /** *
   * This field allows the authorization service to send a HTTP response status
   * code to the downstream client other than 403 (Forbidden).
   * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.type.HttpStatus getStatus() { return status_ == null ? io.envoyproxy.envoy.type.HttpStatus.getDefaultInstance() : status_; } /** *
   * This field allows the authorization service to send a HTTP response status
   * code to the downstream client other than 403 (Forbidden).
   * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.type.HttpStatusOrBuilder getStatusOrBuilder() { return getStatus(); } public static final int HEADERS_FIELD_NUMBER = 2; private java.util.List headers_; /** *
   * This field allows the authorization service to send HTTP response headers
   * to the downstream client.
   * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public java.util.List getHeadersList() { return headers_; } /** *
   * This field allows the authorization service to send HTTP response headers
   * to the downstream client.
   * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public java.util.List getHeadersOrBuilderList() { return headers_; } /** *
   * This field allows the authorization service to send HTTP response headers
   * to the downstream client.
   * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public int getHeadersCount() { return headers_.size(); } /** *
   * This field allows the authorization service to send HTTP response headers
   * to the downstream client.
   * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption getHeaders(int index) { return headers_.get(index); } /** *
   * This field allows the authorization service to send HTTP response headers
   * to the downstream client.
   * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOptionOrBuilder getHeadersOrBuilder( int index) { return headers_.get(index); } public static final int BODY_FIELD_NUMBER = 3; private volatile java.lang.Object body_; /** *
   * This field allows the authorization service to send a response body data
   * to the downstream client.
   * 
* * string body = 3; */ public java.lang.String getBody() { java.lang.Object ref = body_; 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(); body_ = s; return s; } } /** *
   * This field allows the authorization service to send a response body data
   * to the downstream client.
   * 
* * string body = 3; */ public com.google.protobuf.ByteString getBodyBytes() { java.lang.Object ref = body_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); body_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } 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 (status_ != null) { output.writeMessage(1, getStatus()); } for (int i = 0; i < headers_.size(); i++) { output.writeMessage(2, headers_.get(i)); } if (!getBodyBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, body_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (status_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getStatus()); } for (int i = 0; i < headers_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, headers_.get(i)); } if (!getBodyBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, body_); } 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.v3alpha.DeniedHttpResponse)) { return super.equals(obj); } io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse other = (io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse) obj; if (hasStatus() != other.hasStatus()) return false; if (hasStatus()) { if (!getStatus() .equals(other.getStatus())) return false; } if (!getHeadersList() .equals(other.getHeadersList())) return false; if (!getBody() .equals(other.getBody())) 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 (hasStatus()) { hash = (37 * hash) + STATUS_FIELD_NUMBER; hash = (53 * hash) + getStatus().hashCode(); } if (getHeadersCount() > 0) { hash = (37 * hash) + HEADERS_FIELD_NUMBER; hash = (53 * hash) + getHeadersList().hashCode(); } hash = (37 * hash) + BODY_FIELD_NUMBER; hash = (53 * hash) + getBody().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse 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.v3alpha.DeniedHttpResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse 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.v3alpha.DeniedHttpResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse 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.v3alpha.DeniedHttpResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse 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.v3alpha.DeniedHttpResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse 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.v3alpha.DeniedHttpResponse 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.v3alpha.DeniedHttpResponse 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.v3alpha.DeniedHttpResponse 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 a denied response.
   * 
* * Protobuf type {@code envoy.service.auth.v3alpha.DeniedHttpResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:envoy.service.auth.v3alpha.DeniedHttpResponse) io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.envoyproxy.envoy.service.auth.v3alpha.ExternalAuthProto.internal_static_envoy_service_auth_v3alpha_DeniedHttpResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.envoyproxy.envoy.service.auth.v3alpha.ExternalAuthProto.internal_static_envoy_service_auth_v3alpha_DeniedHttpResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse.class, io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse.Builder.class); } // Construct using io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse.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 (statusBuilder_ == null) { status_ = null; } else { status_ = null; statusBuilder_ = null; } if (headersBuilder_ == null) { headers_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); } else { headersBuilder_.clear(); } body_ = ""; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.envoyproxy.envoy.service.auth.v3alpha.ExternalAuthProto.internal_static_envoy_service_auth_v3alpha_DeniedHttpResponse_descriptor; } @java.lang.Override public io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse getDefaultInstanceForType() { return io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse.getDefaultInstance(); } @java.lang.Override public io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse build() { io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse buildPartial() { io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse result = new io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse(this); int from_bitField0_ = bitField0_; if (statusBuilder_ == null) { result.status_ = status_; } else { result.status_ = statusBuilder_.build(); } if (headersBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0)) { headers_ = java.util.Collections.unmodifiableList(headers_); bitField0_ = (bitField0_ & ~0x00000001); } result.headers_ = headers_; } else { result.headers_ = headersBuilder_.build(); } result.body_ = body_; 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.v3alpha.DeniedHttpResponse) { return mergeFrom((io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse other) { if (other == io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse.getDefaultInstance()) return this; if (other.hasStatus()) { mergeStatus(other.getStatus()); } 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_); } } } if (!other.getBody().isEmpty()) { body_ = other.body_; onChanged(); } 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.v3alpha.DeniedHttpResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private io.envoyproxy.envoy.type.HttpStatus status_; private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.type.HttpStatus, io.envoyproxy.envoy.type.HttpStatus.Builder, io.envoyproxy.envoy.type.HttpStatusOrBuilder> statusBuilder_; /** *
     * This field allows the authorization service to send a HTTP response status
     * code to the downstream client other than 403 (Forbidden).
     * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public boolean hasStatus() { return statusBuilder_ != null || status_ != null; } /** *
     * This field allows the authorization service to send a HTTP response status
     * code to the downstream client other than 403 (Forbidden).
     * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.type.HttpStatus getStatus() { if (statusBuilder_ == null) { return status_ == null ? io.envoyproxy.envoy.type.HttpStatus.getDefaultInstance() : status_; } else { return statusBuilder_.getMessage(); } } /** *
     * This field allows the authorization service to send a HTTP response status
     * code to the downstream client other than 403 (Forbidden).
     * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public Builder setStatus(io.envoyproxy.envoy.type.HttpStatus value) { if (statusBuilder_ == null) { if (value == null) { throw new NullPointerException(); } status_ = value; onChanged(); } else { statusBuilder_.setMessage(value); } return this; } /** *
     * This field allows the authorization service to send a HTTP response status
     * code to the downstream client other than 403 (Forbidden).
     * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public Builder setStatus( io.envoyproxy.envoy.type.HttpStatus.Builder builderForValue) { if (statusBuilder_ == null) { status_ = builderForValue.build(); onChanged(); } else { statusBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * This field allows the authorization service to send a HTTP response status
     * code to the downstream client other than 403 (Forbidden).
     * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public Builder mergeStatus(io.envoyproxy.envoy.type.HttpStatus value) { if (statusBuilder_ == null) { if (status_ != null) { status_ = io.envoyproxy.envoy.type.HttpStatus.newBuilder(status_).mergeFrom(value).buildPartial(); } else { status_ = value; } onChanged(); } else { statusBuilder_.mergeFrom(value); } return this; } /** *
     * This field allows the authorization service to send a HTTP response status
     * code to the downstream client other than 403 (Forbidden).
     * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public Builder clearStatus() { if (statusBuilder_ == null) { status_ = null; onChanged(); } else { status_ = null; statusBuilder_ = null; } return this; } /** *
     * This field allows the authorization service to send a HTTP response status
     * code to the downstream client other than 403 (Forbidden).
     * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.type.HttpStatus.Builder getStatusBuilder() { onChanged(); return getStatusFieldBuilder().getBuilder(); } /** *
     * This field allows the authorization service to send a HTTP response status
     * code to the downstream client other than 403 (Forbidden).
     * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ public io.envoyproxy.envoy.type.HttpStatusOrBuilder getStatusOrBuilder() { if (statusBuilder_ != null) { return statusBuilder_.getMessageOrBuilder(); } else { return status_ == null ? io.envoyproxy.envoy.type.HttpStatus.getDefaultInstance() : status_; } } /** *
     * This field allows the authorization service to send a HTTP response status
     * code to the downstream client other than 403 (Forbidden).
     * 
* * .envoy.type.HttpStatus status = 1 [(.validate.rules) = { ... } */ private com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.type.HttpStatus, io.envoyproxy.envoy.type.HttpStatus.Builder, io.envoyproxy.envoy.type.HttpStatusOrBuilder> getStatusFieldBuilder() { if (statusBuilder_ == null) { statusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.envoyproxy.envoy.type.HttpStatus, io.envoyproxy.envoy.type.HttpStatus.Builder, io.envoyproxy.envoy.type.HttpStatusOrBuilder>( getStatus(), getParentForChildren(), isClean()); status_ = null; } return statusBuilder_; } 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.v3alpha.core.HeaderValueOption, io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.Builder, io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOptionOrBuilder> headersBuilder_; /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public java.util.List getHeadersList() { if (headersBuilder_ == null) { return java.util.Collections.unmodifiableList(headers_); } else { return headersBuilder_.getMessageList(); } } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public int getHeadersCount() { if (headersBuilder_ == null) { return headers_.size(); } else { return headersBuilder_.getCount(); } } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption getHeaders(int index) { if (headersBuilder_ == null) { return headers_.get(index); } else { return headersBuilder_.getMessage(index); } } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public Builder setHeaders( int index, io.envoyproxy.envoy.api.v3alpha.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; } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public Builder setHeaders( int index, io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.Builder builderForValue) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); headers_.set(index, builderForValue.build()); onChanged(); } else { headersBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public Builder addHeaders(io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption value) { if (headersBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureHeadersIsMutable(); headers_.add(value); onChanged(); } else { headersBuilder_.addMessage(value); } return this; } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public Builder addHeaders( int index, io.envoyproxy.envoy.api.v3alpha.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; } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public Builder addHeaders( io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.Builder builderForValue) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); headers_.add(builderForValue.build()); onChanged(); } else { headersBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public Builder addHeaders( int index, io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.Builder builderForValue) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); headers_.add(index, builderForValue.build()); onChanged(); } else { headersBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public Builder addAllHeaders( java.lang.Iterable values) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, headers_); onChanged(); } else { headersBuilder_.addAllMessages(values); } return this; } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public Builder clearHeaders() { if (headersBuilder_ == null) { headers_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { headersBuilder_.clear(); } return this; } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public Builder removeHeaders(int index) { if (headersBuilder_ == null) { ensureHeadersIsMutable(); headers_.remove(index); onChanged(); } else { headersBuilder_.remove(index); } return this; } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.Builder getHeadersBuilder( int index) { return getHeadersFieldBuilder().getBuilder(index); } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOptionOrBuilder getHeadersOrBuilder( int index) { if (headersBuilder_ == null) { return headers_.get(index); } else { return headersBuilder_.getMessageOrBuilder(index); } } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public java.util.List getHeadersOrBuilderList() { if (headersBuilder_ != null) { return headersBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(headers_); } } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.Builder addHeadersBuilder() { return getHeadersFieldBuilder().addBuilder( io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.getDefaultInstance()); } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.Builder addHeadersBuilder( int index) { return getHeadersFieldBuilder().addBuilder( index, io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.getDefaultInstance()); } /** *
     * This field allows the authorization service to send HTTP response headers
     * to the downstream client.
     * 
* * repeated .envoy.api.v3alpha.core.HeaderValueOption headers = 2; */ public java.util.List getHeadersBuilderList() { return getHeadersFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption, io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.Builder, io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOptionOrBuilder> getHeadersFieldBuilder() { if (headersBuilder_ == null) { headersBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption, io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOption.Builder, io.envoyproxy.envoy.api.v3alpha.core.HeaderValueOptionOrBuilder>( headers_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); headers_ = null; } return headersBuilder_; } private java.lang.Object body_ = ""; /** *
     * This field allows the authorization service to send a response body data
     * to the downstream client.
     * 
* * string body = 3; */ public java.lang.String getBody() { java.lang.Object ref = body_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); body_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * This field allows the authorization service to send a response body data
     * to the downstream client.
     * 
* * string body = 3; */ public com.google.protobuf.ByteString getBodyBytes() { java.lang.Object ref = body_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); body_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * This field allows the authorization service to send a response body data
     * to the downstream client.
     * 
* * string body = 3; */ public Builder setBody( java.lang.String value) { if (value == null) { throw new NullPointerException(); } body_ = value; onChanged(); return this; } /** *
     * This field allows the authorization service to send a response body data
     * to the downstream client.
     * 
* * string body = 3; */ public Builder clearBody() { body_ = getDefaultInstance().getBody(); onChanged(); return this; } /** *
     * This field allows the authorization service to send a response body data
     * to the downstream client.
     * 
* * string body = 3; */ public Builder setBodyBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); body_ = value; 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.auth.v3alpha.DeniedHttpResponse) } // @@protoc_insertion_point(class_scope:envoy.service.auth.v3alpha.DeniedHttpResponse) private static final io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse(); } public static io.envoyproxy.envoy.service.auth.v3alpha.DeniedHttpResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public DeniedHttpResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new DeniedHttpResponse(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.v3alpha.DeniedHttpResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy