All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
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.
udpa.annotations.Security Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: udpa/annotations/security.proto
package udpa.annotations;
public final class Security {
private Security() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
registry.add(udpa.annotations.Security.security);
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
registerAllExtensions(
(com.google.protobuf.ExtensionRegistryLite) registry);
}
public interface FieldSecurityAnnotationOrBuilder extends
// @@protoc_insertion_point(interface_extends:udpa.annotations.FieldSecurityAnnotation)
com.google.protobuf.MessageOrBuilder {
/**
*
* Field should be set in the presence of untrusted downstreams.
*
*
* bool configure_for_untrusted_downstream = 1;
* @return The configureForUntrustedDownstream.
*/
boolean getConfigureForUntrustedDownstream();
/**
*
* Field should be set in the presence of untrusted upstreams.
*
*
* bool configure_for_untrusted_upstream = 2;
* @return The configureForUntrustedUpstream.
*/
boolean getConfigureForUntrustedUpstream();
}
/**
*
* These annotations indicate metadata for the purpose of understanding the
* security significance of fields.
*
*
* Protobuf type {@code udpa.annotations.FieldSecurityAnnotation}
*/
public static final class FieldSecurityAnnotation extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:udpa.annotations.FieldSecurityAnnotation)
FieldSecurityAnnotationOrBuilder {
private static final long serialVersionUID = 0L;
// Use FieldSecurityAnnotation.newBuilder() to construct.
private FieldSecurityAnnotation(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private FieldSecurityAnnotation() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new FieldSecurityAnnotation();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private FieldSecurityAnnotation(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
configureForUntrustedDownstream_ = input.readBool();
break;
}
case 16: {
configureForUntrustedUpstream_ = input.readBool();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return udpa.annotations.Security.internal_static_udpa_annotations_FieldSecurityAnnotation_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return udpa.annotations.Security.internal_static_udpa_annotations_FieldSecurityAnnotation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
udpa.annotations.Security.FieldSecurityAnnotation.class, udpa.annotations.Security.FieldSecurityAnnotation.Builder.class);
}
public static final int CONFIGURE_FOR_UNTRUSTED_DOWNSTREAM_FIELD_NUMBER = 1;
private boolean configureForUntrustedDownstream_;
/**
*
* Field should be set in the presence of untrusted downstreams.
*
*
* bool configure_for_untrusted_downstream = 1;
* @return The configureForUntrustedDownstream.
*/
@java.lang.Override
public boolean getConfigureForUntrustedDownstream() {
return configureForUntrustedDownstream_;
}
public static final int CONFIGURE_FOR_UNTRUSTED_UPSTREAM_FIELD_NUMBER = 2;
private boolean configureForUntrustedUpstream_;
/**
*
* Field should be set in the presence of untrusted upstreams.
*
*
* bool configure_for_untrusted_upstream = 2;
* @return The configureForUntrustedUpstream.
*/
@java.lang.Override
public boolean getConfigureForUntrustedUpstream() {
return configureForUntrustedUpstream_;
}
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 (configureForUntrustedDownstream_ != false) {
output.writeBool(1, configureForUntrustedDownstream_);
}
if (configureForUntrustedUpstream_ != false) {
output.writeBool(2, configureForUntrustedUpstream_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (configureForUntrustedDownstream_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(1, configureForUntrustedDownstream_);
}
if (configureForUntrustedUpstream_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(2, configureForUntrustedUpstream_);
}
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 udpa.annotations.Security.FieldSecurityAnnotation)) {
return super.equals(obj);
}
udpa.annotations.Security.FieldSecurityAnnotation other = (udpa.annotations.Security.FieldSecurityAnnotation) obj;
if (getConfigureForUntrustedDownstream()
!= other.getConfigureForUntrustedDownstream()) return false;
if (getConfigureForUntrustedUpstream()
!= other.getConfigureForUntrustedUpstream()) 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();
hash = (37 * hash) + CONFIGURE_FOR_UNTRUSTED_DOWNSTREAM_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getConfigureForUntrustedDownstream());
hash = (37 * hash) + CONFIGURE_FOR_UNTRUSTED_UPSTREAM_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getConfigureForUntrustedUpstream());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static udpa.annotations.Security.FieldSecurityAnnotation parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static udpa.annotations.Security.FieldSecurityAnnotation parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static udpa.annotations.Security.FieldSecurityAnnotation parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static udpa.annotations.Security.FieldSecurityAnnotation parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static udpa.annotations.Security.FieldSecurityAnnotation parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static udpa.annotations.Security.FieldSecurityAnnotation parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static udpa.annotations.Security.FieldSecurityAnnotation parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static udpa.annotations.Security.FieldSecurityAnnotation 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 udpa.annotations.Security.FieldSecurityAnnotation parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static udpa.annotations.Security.FieldSecurityAnnotation 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 udpa.annotations.Security.FieldSecurityAnnotation parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static udpa.annotations.Security.FieldSecurityAnnotation 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(udpa.annotations.Security.FieldSecurityAnnotation 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;
}
/**
*
* These annotations indicate metadata for the purpose of understanding the
* security significance of fields.
*
*
* Protobuf type {@code udpa.annotations.FieldSecurityAnnotation}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:udpa.annotations.FieldSecurityAnnotation)
udpa.annotations.Security.FieldSecurityAnnotationOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return udpa.annotations.Security.internal_static_udpa_annotations_FieldSecurityAnnotation_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return udpa.annotations.Security.internal_static_udpa_annotations_FieldSecurityAnnotation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
udpa.annotations.Security.FieldSecurityAnnotation.class, udpa.annotations.Security.FieldSecurityAnnotation.Builder.class);
}
// Construct using udpa.annotations.Security.FieldSecurityAnnotation.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
configureForUntrustedDownstream_ = false;
configureForUntrustedUpstream_ = false;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return udpa.annotations.Security.internal_static_udpa_annotations_FieldSecurityAnnotation_descriptor;
}
@java.lang.Override
public udpa.annotations.Security.FieldSecurityAnnotation getDefaultInstanceForType() {
return udpa.annotations.Security.FieldSecurityAnnotation.getDefaultInstance();
}
@java.lang.Override
public udpa.annotations.Security.FieldSecurityAnnotation build() {
udpa.annotations.Security.FieldSecurityAnnotation result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public udpa.annotations.Security.FieldSecurityAnnotation buildPartial() {
udpa.annotations.Security.FieldSecurityAnnotation result = new udpa.annotations.Security.FieldSecurityAnnotation(this);
result.configureForUntrustedDownstream_ = configureForUntrustedDownstream_;
result.configureForUntrustedUpstream_ = configureForUntrustedUpstream_;
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 udpa.annotations.Security.FieldSecurityAnnotation) {
return mergeFrom((udpa.annotations.Security.FieldSecurityAnnotation)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(udpa.annotations.Security.FieldSecurityAnnotation other) {
if (other == udpa.annotations.Security.FieldSecurityAnnotation.getDefaultInstance()) return this;
if (other.getConfigureForUntrustedDownstream() != false) {
setConfigureForUntrustedDownstream(other.getConfigureForUntrustedDownstream());
}
if (other.getConfigureForUntrustedUpstream() != false) {
setConfigureForUntrustedUpstream(other.getConfigureForUntrustedUpstream());
}
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 {
udpa.annotations.Security.FieldSecurityAnnotation parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (udpa.annotations.Security.FieldSecurityAnnotation) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private boolean configureForUntrustedDownstream_ ;
/**
*
* Field should be set in the presence of untrusted downstreams.
*
*
* bool configure_for_untrusted_downstream = 1;
* @return The configureForUntrustedDownstream.
*/
@java.lang.Override
public boolean getConfigureForUntrustedDownstream() {
return configureForUntrustedDownstream_;
}
/**
*
* Field should be set in the presence of untrusted downstreams.
*
*
* bool configure_for_untrusted_downstream = 1;
* @param value The configureForUntrustedDownstream to set.
* @return This builder for chaining.
*/
public Builder setConfigureForUntrustedDownstream(boolean value) {
configureForUntrustedDownstream_ = value;
onChanged();
return this;
}
/**
*
* Field should be set in the presence of untrusted downstreams.
*
*
* bool configure_for_untrusted_downstream = 1;
* @return This builder for chaining.
*/
public Builder clearConfigureForUntrustedDownstream() {
configureForUntrustedDownstream_ = false;
onChanged();
return this;
}
private boolean configureForUntrustedUpstream_ ;
/**
*
* Field should be set in the presence of untrusted upstreams.
*
*
* bool configure_for_untrusted_upstream = 2;
* @return The configureForUntrustedUpstream.
*/
@java.lang.Override
public boolean getConfigureForUntrustedUpstream() {
return configureForUntrustedUpstream_;
}
/**
*
* Field should be set in the presence of untrusted upstreams.
*
*
* bool configure_for_untrusted_upstream = 2;
* @param value The configureForUntrustedUpstream to set.
* @return This builder for chaining.
*/
public Builder setConfigureForUntrustedUpstream(boolean value) {
configureForUntrustedUpstream_ = value;
onChanged();
return this;
}
/**
*
* Field should be set in the presence of untrusted upstreams.
*
*
* bool configure_for_untrusted_upstream = 2;
* @return This builder for chaining.
*/
public Builder clearConfigureForUntrustedUpstream() {
configureForUntrustedUpstream_ = false;
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:udpa.annotations.FieldSecurityAnnotation)
}
// @@protoc_insertion_point(class_scope:udpa.annotations.FieldSecurityAnnotation)
private static final udpa.annotations.Security.FieldSecurityAnnotation DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new udpa.annotations.Security.FieldSecurityAnnotation();
}
public static udpa.annotations.Security.FieldSecurityAnnotation getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public FieldSecurityAnnotation parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new FieldSecurityAnnotation(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 udpa.annotations.Security.FieldSecurityAnnotation getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public static final int SECURITY_FIELD_NUMBER = 11122993;
/**
*
* Magic number is the 28 most significant bits in the sha256sum of
* "udpa.annotations.security".
*
*
* extend .google.protobuf.FieldOptions { ... }
*/
public static final
com.google.protobuf.GeneratedMessage.GeneratedExtension<
com.google.protobuf.DescriptorProtos.FieldOptions,
udpa.annotations.Security.FieldSecurityAnnotation> security = com.google.protobuf.GeneratedMessage
.newFileScopedGeneratedExtension(
udpa.annotations.Security.FieldSecurityAnnotation.class,
udpa.annotations.Security.FieldSecurityAnnotation.getDefaultInstance());
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_udpa_annotations_FieldSecurityAnnotation_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_udpa_annotations_FieldSecurityAnnotation_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\n\037udpa/annotations/security.proto\022\020udpa." +
"annotations\032\035udpa/annotations/status.pro" +
"to\032 google/protobuf/descriptor.proto\"o\n\027" +
"FieldSecurityAnnotation\022*\n\"configure_for" +
"_untrusted_downstream\030\001 \001(\010\022(\n configure" +
"_for_untrusted_upstream\030\002 \001(\010:]\n\010securit" +
"y\022\035.google.protobuf.FieldOptions\030\261\362\246\005 \001(" +
"\0132).udpa.annotations.FieldSecurityAnnota" +
"tionB,Z\"github.com/cncf/xds/go/annotatio" +
"ns\272\200\310\321\006\002\010\001b\006proto3"
};
descriptor = com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
udpa.annotations.Status.getDescriptor(),
com.google.protobuf.DescriptorProtos.getDescriptor(),
});
internal_static_udpa_annotations_FieldSecurityAnnotation_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_udpa_annotations_FieldSecurityAnnotation_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_udpa_annotations_FieldSecurityAnnotation_descriptor,
new java.lang.String[] { "ConfigureForUntrustedDownstream", "ConfigureForUntrustedUpstream", });
security.internalInit(descriptor.getExtensions().get(0));
com.google.protobuf.ExtensionRegistry registry =
com.google.protobuf.ExtensionRegistry.newInstance();
registry.add(udpa.annotations.Status.fileStatus);
com.google.protobuf.Descriptors.FileDescriptor
.internalUpdateFileDescriptor(descriptor, registry);
udpa.annotations.Status.getDescriptor();
com.google.protobuf.DescriptorProtos.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}