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.
*
* UNKNOWN = 0;
*/
public static final int UNKNOWN_VALUE = 0;
/**
*
* This version of the package is frozen.
*
*
* FROZEN = 1;
*/
public static final int FROZEN_VALUE = 1;
/**
*
* This version of the package is the active development version.
*
*
* ACTIVE = 2;
*/
public static final int ACTIVE_VALUE = 2;
/**
*
* This version of the package is the candidate for the next major version. It
* is typically machine generated from the active development version.
*
*
* NEXT_MAJOR_VERSION_CANDIDATE = 3;
*/
public static final int NEXT_MAJOR_VERSION_CANDIDATE_VALUE = 3;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static PackageVersionStatus valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static PackageVersionStatus forNumber(int value) {
switch (value) {
case 0: return UNKNOWN;
case 1: return FROZEN;
case 2: return ACTIVE;
case 3: return NEXT_MAJOR_VERSION_CANDIDATE;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
PackageVersionStatus> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public PackageVersionStatus findValueByNumber(int number) {
return PackageVersionStatus.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return udpa.annotations.Status.getDescriptor().getEnumTypes().get(0);
}
private static final PackageVersionStatus[] VALUES = values();
public static PackageVersionStatus valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private PackageVersionStatus(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:udpa.annotations.PackageVersionStatus)
}
public interface StatusAnnotationOrBuilder extends
// @@protoc_insertion_point(interface_extends:udpa.annotations.StatusAnnotation)
com.google.protobuf.MessageOrBuilder {
/**
*
* The entity is work-in-progress and subject to breaking changes.
*
* The entity belongs to a package with the given version status.
*
*
* .udpa.annotations.PackageVersionStatus package_version_status = 2;
* @return The enum numeric value on the wire for packageVersionStatus.
*/
int getPackageVersionStatusValue();
/**
*
* The entity belongs to a package with the given version status.
*
*
* .udpa.annotations.PackageVersionStatus package_version_status = 2;
* @return The packageVersionStatus.
*/
udpa.annotations.Status.PackageVersionStatus getPackageVersionStatus();
}
/**
* Protobuf type {@code udpa.annotations.StatusAnnotation}
*/
public static final class StatusAnnotation extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:udpa.annotations.StatusAnnotation)
StatusAnnotationOrBuilder {
private static final long serialVersionUID = 0L;
// Use StatusAnnotation.newBuilder() to construct.
private StatusAnnotation(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StatusAnnotation() {
packageVersionStatus_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new StatusAnnotation();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StatusAnnotation(
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: {
workInProgress_ = input.readBool();
break;
}
case 16: {
int rawValue = input.readEnum();
packageVersionStatus_ = rawValue;
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.Status.internal_static_udpa_annotations_StatusAnnotation_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return udpa.annotations.Status.internal_static_udpa_annotations_StatusAnnotation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
udpa.annotations.Status.StatusAnnotation.class, udpa.annotations.Status.StatusAnnotation.Builder.class);
}
public static final int WORK_IN_PROGRESS_FIELD_NUMBER = 1;
private boolean workInProgress_;
/**
*
* The entity is work-in-progress and subject to breaking changes.
*
*
* bool work_in_progress = 1;
* @return The workInProgress.
*/
@java.lang.Override
public boolean getWorkInProgress() {
return workInProgress_;
}
public static final int PACKAGE_VERSION_STATUS_FIELD_NUMBER = 2;
private int packageVersionStatus_;
/**
*
* The entity belongs to a package with the given version status.
*
*
* .udpa.annotations.PackageVersionStatus package_version_status = 2;
* @return The enum numeric value on the wire for packageVersionStatus.
*/
@java.lang.Override public int getPackageVersionStatusValue() {
return packageVersionStatus_;
}
/**
*
* The entity belongs to a package with the given version status.
*
*
* .udpa.annotations.PackageVersionStatus package_version_status = 2;
* @return The packageVersionStatus.
*/
@java.lang.Override public udpa.annotations.Status.PackageVersionStatus getPackageVersionStatus() {
@SuppressWarnings("deprecation")
udpa.annotations.Status.PackageVersionStatus result = udpa.annotations.Status.PackageVersionStatus.valueOf(packageVersionStatus_);
return result == null ? udpa.annotations.Status.PackageVersionStatus.UNRECOGNIZED : result;
}
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 (workInProgress_ != false) {
output.writeBool(1, workInProgress_);
}
if (packageVersionStatus_ != udpa.annotations.Status.PackageVersionStatus.UNKNOWN.getNumber()) {
output.writeEnum(2, packageVersionStatus_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (workInProgress_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(1, workInProgress_);
}
if (packageVersionStatus_ != udpa.annotations.Status.PackageVersionStatus.UNKNOWN.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(2, packageVersionStatus_);
}
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.Status.StatusAnnotation)) {
return super.equals(obj);
}
udpa.annotations.Status.StatusAnnotation other = (udpa.annotations.Status.StatusAnnotation) obj;
if (getWorkInProgress()
!= other.getWorkInProgress()) return false;
if (packageVersionStatus_ != other.packageVersionStatus_) 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) + WORK_IN_PROGRESS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getWorkInProgress());
hash = (37 * hash) + PACKAGE_VERSION_STATUS_FIELD_NUMBER;
hash = (53 * hash) + packageVersionStatus_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static udpa.annotations.Status.StatusAnnotation parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static udpa.annotations.Status.StatusAnnotation parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static udpa.annotations.Status.StatusAnnotation parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static udpa.annotations.Status.StatusAnnotation 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.Status.StatusAnnotation parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static udpa.annotations.Status.StatusAnnotation parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static udpa.annotations.Status.StatusAnnotation parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static udpa.annotations.Status.StatusAnnotation 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.Status.StatusAnnotation parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static udpa.annotations.Status.StatusAnnotation 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.Status.StatusAnnotation parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static udpa.annotations.Status.StatusAnnotation 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.Status.StatusAnnotation 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;
}
/**
* Protobuf type {@code udpa.annotations.StatusAnnotation}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:udpa.annotations.StatusAnnotation)
udpa.annotations.Status.StatusAnnotationOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return udpa.annotations.Status.internal_static_udpa_annotations_StatusAnnotation_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return udpa.annotations.Status.internal_static_udpa_annotations_StatusAnnotation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
udpa.annotations.Status.StatusAnnotation.class, udpa.annotations.Status.StatusAnnotation.Builder.class);
}
// Construct using udpa.annotations.Status.StatusAnnotation.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();
workInProgress_ = false;
packageVersionStatus_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return udpa.annotations.Status.internal_static_udpa_annotations_StatusAnnotation_descriptor;
}
@java.lang.Override
public udpa.annotations.Status.StatusAnnotation getDefaultInstanceForType() {
return udpa.annotations.Status.StatusAnnotation.getDefaultInstance();
}
@java.lang.Override
public udpa.annotations.Status.StatusAnnotation build() {
udpa.annotations.Status.StatusAnnotation result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public udpa.annotations.Status.StatusAnnotation buildPartial() {
udpa.annotations.Status.StatusAnnotation result = new udpa.annotations.Status.StatusAnnotation(this);
result.workInProgress_ = workInProgress_;
result.packageVersionStatus_ = packageVersionStatus_;
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.Status.StatusAnnotation) {
return mergeFrom((udpa.annotations.Status.StatusAnnotation)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(udpa.annotations.Status.StatusAnnotation other) {
if (other == udpa.annotations.Status.StatusAnnotation.getDefaultInstance()) return this;
if (other.getWorkInProgress() != false) {
setWorkInProgress(other.getWorkInProgress());
}
if (other.packageVersionStatus_ != 0) {
setPackageVersionStatusValue(other.getPackageVersionStatusValue());
}
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.Status.StatusAnnotation parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (udpa.annotations.Status.StatusAnnotation) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private boolean workInProgress_ ;
/**
*
* The entity is work-in-progress and subject to breaking changes.
*
* The entity is work-in-progress and subject to breaking changes.
*
*
* bool work_in_progress = 1;
* @param value The workInProgress to set.
* @return This builder for chaining.
*/
public Builder setWorkInProgress(boolean value) {
workInProgress_ = value;
onChanged();
return this;
}
/**
*
* The entity is work-in-progress and subject to breaking changes.
*
*
* bool work_in_progress = 1;
* @return This builder for chaining.
*/
public Builder clearWorkInProgress() {
workInProgress_ = false;
onChanged();
return this;
}
private int packageVersionStatus_ = 0;
/**
*
* The entity belongs to a package with the given version status.
*
*
* .udpa.annotations.PackageVersionStatus package_version_status = 2;
* @return The enum numeric value on the wire for packageVersionStatus.
*/
@java.lang.Override public int getPackageVersionStatusValue() {
return packageVersionStatus_;
}
/**
*
* The entity belongs to a package with the given version status.
*
*
* .udpa.annotations.PackageVersionStatus package_version_status = 2;
* @param value The enum numeric value on the wire for packageVersionStatus to set.
* @return This builder for chaining.
*/
public Builder setPackageVersionStatusValue(int value) {
packageVersionStatus_ = value;
onChanged();
return this;
}
/**
*
* The entity belongs to a package with the given version status.
*
*
* .udpa.annotations.PackageVersionStatus package_version_status = 2;
* @return The packageVersionStatus.
*/
@java.lang.Override
public udpa.annotations.Status.PackageVersionStatus getPackageVersionStatus() {
@SuppressWarnings("deprecation")
udpa.annotations.Status.PackageVersionStatus result = udpa.annotations.Status.PackageVersionStatus.valueOf(packageVersionStatus_);
return result == null ? udpa.annotations.Status.PackageVersionStatus.UNRECOGNIZED : result;
}
/**
*
* The entity belongs to a package with the given version status.
*
*
* .udpa.annotations.PackageVersionStatus package_version_status = 2;
* @param value The packageVersionStatus to set.
* @return This builder for chaining.
*/
public Builder setPackageVersionStatus(udpa.annotations.Status.PackageVersionStatus value) {
if (value == null) {
throw new NullPointerException();
}
packageVersionStatus_ = value.getNumber();
onChanged();
return this;
}
/**
*
* The entity belongs to a package with the given version status.
*
*
* .udpa.annotations.PackageVersionStatus package_version_status = 2;
* @return This builder for chaining.
*/
public Builder clearPackageVersionStatus() {
packageVersionStatus_ = 0;
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.StatusAnnotation)
}
// @@protoc_insertion_point(class_scope:udpa.annotations.StatusAnnotation)
private static final udpa.annotations.Status.StatusAnnotation DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new udpa.annotations.Status.StatusAnnotation();
}
public static udpa.annotations.Status.StatusAnnotation getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StatusAnnotation parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new StatusAnnotation(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.Status.StatusAnnotation getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public static final int FILE_STATUS_FIELD_NUMBER = 222707719;
/**
* extend .google.protobuf.FileOptions { ... }
*/
public static final
com.google.protobuf.GeneratedMessage.GeneratedExtension<
com.google.protobuf.DescriptorProtos.FileOptions,
udpa.annotations.Status.StatusAnnotation> fileStatus = com.google.protobuf.GeneratedMessage
.newFileScopedGeneratedExtension(
udpa.annotations.Status.StatusAnnotation.class,
udpa.annotations.Status.StatusAnnotation.getDefaultInstance());
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_udpa_annotations_StatusAnnotation_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_udpa_annotations_StatusAnnotation_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\035udpa/annotations/status.proto\022\020udpa.an" +
"notations\032 google/protobuf/descriptor.pr" +
"oto\"t\n\020StatusAnnotation\022\030\n\020work_in_progr" +
"ess\030\001 \001(\010\022F\n\026package_version_status\030\002 \001(" +
"\0162&.udpa.annotations.PackageVersionStatu" +
"s*]\n\024PackageVersionStatus\022\013\n\007UNKNOWN\020\000\022\n" +
"\n\006FROZEN\020\001\022\n\n\006ACTIVE\020\002\022 \n\034NEXT_MAJOR_VER" +
"SION_CANDIDATE\020\003:X\n\013file_status\022\034.google" +
".protobuf.FileOptions\030\207\200\231j \001(\0132\".udpa.an" +
"notations.StatusAnnotationB$Z\"github.com" +
"/cncf/xds/go/annotationsb\006proto3"
};
descriptor = com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
com.google.protobuf.DescriptorProtos.getDescriptor(),
});
internal_static_udpa_annotations_StatusAnnotation_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_udpa_annotations_StatusAnnotation_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_udpa_annotations_StatusAnnotation_descriptor,
new java.lang.String[] { "WorkInProgress", "PackageVersionStatus", });
fileStatus.internalInit(descriptor.getExtensions().get(0));
com.google.protobuf.DescriptorProtos.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}