implements
// @@protoc_insertion_point(builder_implements:google.longrunning.Operation)
com.google.longrunning.OperationOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.longrunning.OperationsProto.internal_static_google_longrunning_Operation_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.longrunning.OperationsProto.internal_static_google_longrunning_Operation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.longrunning.Operation.class, com.google.longrunning.Operation.Builder.class);
}
// Construct using com.google.longrunning.Operation.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
public Builder clear() {
super.clear();
name_ = "";
if (metadataBuilder_ == null) {
metadata_ = null;
} else {
metadata_ = null;
metadataBuilder_ = null;
}
done_ = false;
resultCase_ = 0;
result_ = null;
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.longrunning.OperationsProto.internal_static_google_longrunning_Operation_descriptor;
}
public com.google.longrunning.Operation getDefaultInstanceForType() {
return com.google.longrunning.Operation.getDefaultInstance();
}
public com.google.longrunning.Operation build() {
com.google.longrunning.Operation result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.google.longrunning.Operation buildPartial() {
com.google.longrunning.Operation result = new com.google.longrunning.Operation(this);
result.name_ = name_;
if (metadataBuilder_ == null) {
result.metadata_ = metadata_;
} else {
result.metadata_ = metadataBuilder_.build();
}
result.done_ = done_;
if (resultCase_ == 4) {
if (errorBuilder_ == null) {
result.result_ = result_;
} else {
result.result_ = errorBuilder_.build();
}
}
if (resultCase_ == 5) {
if (responseBuilder_ == null) {
result.result_ = result_;
} else {
result.result_ = responseBuilder_.build();
}
}
result.resultCase_ = resultCase_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.longrunning.Operation) {
return mergeFrom((com.google.longrunning.Operation)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.longrunning.Operation other) {
if (other == com.google.longrunning.Operation.getDefaultInstance()) return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
onChanged();
}
if (other.hasMetadata()) {
mergeMetadata(other.getMetadata());
}
if (other.getDone() != false) {
setDone(other.getDone());
}
switch (other.getResultCase()) {
case ERROR: {
mergeError(other.getError());
break;
}
case RESPONSE: {
mergeResponse(other.getResponse());
break;
}
case RESULT_NOT_SET: {
break;
}
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.longrunning.Operation parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.longrunning.Operation) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int resultCase_ = 0;
private java.lang.Object result_;
public ResultCase
getResultCase() {
return ResultCase.forNumber(
resultCase_);
}
public Builder clearResult() {
resultCase_ = 0;
result_ = null;
onChanged();
return this;
}
private java.lang.Object name_ = "";
/**
*
* The server-assigned name, which is only unique within the same service that
* originally returns it. If you use the default HTTP mapping, the
* `name` should have the format of `operations/some/unique/name`.
*
*
* string name = 1;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The server-assigned name, which is only unique within the same service that
* originally returns it. If you use the default HTTP mapping, the
* `name` should have the format of `operations/some/unique/name`.
*
*
* string name = 1;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The server-assigned name, which is only unique within the same service that
* originally returns it. If you use the default HTTP mapping, the
* `name` should have the format of `operations/some/unique/name`.
*
*
* string name = 1;
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
onChanged();
return this;
}
/**
*
* The server-assigned name, which is only unique within the same service that
* originally returns it. If you use the default HTTP mapping, the
* `name` should have the format of `operations/some/unique/name`.
*
*
* string name = 1;
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
*
* The server-assigned name, which is only unique within the same service that
* originally returns it. If you use the default HTTP mapping, the
* `name` should have the format of `operations/some/unique/name`.
*
*
* string name = 1;
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
onChanged();
return this;
}
private com.google.protobuf.Any metadata_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Any, com.google.protobuf.Any.Builder, com.google.protobuf.AnyOrBuilder> metadataBuilder_;
/**
*
* Service-specific metadata associated with the operation. It typically
* contains progress information and common metadata such as create time.
* Some services might not provide such metadata. Any method that returns a
* long-running operation should document the metadata type, if any.
*
*
* .google.protobuf.Any metadata = 2;
*/
public boolean hasMetadata() {
return metadataBuilder_ != null || metadata_ != null;
}
/**
*
* Service-specific metadata associated with the operation. It typically
* contains progress information and common metadata such as create time.
* Some services might not provide such metadata. Any method that returns a
* long-running operation should document the metadata type, if any.
*
*
* .google.protobuf.Any metadata = 2;
*/
public com.google.protobuf.Any getMetadata() {
if (metadataBuilder_ == null) {
return metadata_ == null ? com.google.protobuf.Any.getDefaultInstance() : metadata_;
} else {
return metadataBuilder_.getMessage();
}
}
/**
*
* Service-specific metadata associated with the operation. It typically
* contains progress information and common metadata such as create time.
* Some services might not provide such metadata. Any method that returns a
* long-running operation should document the metadata type, if any.
*
*
* .google.protobuf.Any metadata = 2;
*/
public Builder setMetadata(com.google.protobuf.Any value) {
if (metadataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
metadata_ = value;
onChanged();
} else {
metadataBuilder_.setMessage(value);
}
return this;
}
/**
*
* Service-specific metadata associated with the operation. It typically
* contains progress information and common metadata such as create time.
* Some services might not provide such metadata. Any method that returns a
* long-running operation should document the metadata type, if any.
*
*
* .google.protobuf.Any metadata = 2;
*/
public Builder setMetadata(
com.google.protobuf.Any.Builder builderForValue) {
if (metadataBuilder_ == null) {
metadata_ = builderForValue.build();
onChanged();
} else {
metadataBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* Service-specific metadata associated with the operation. It typically
* contains progress information and common metadata such as create time.
* Some services might not provide such metadata. Any method that returns a
* long-running operation should document the metadata type, if any.
*
*
* .google.protobuf.Any metadata = 2;
*/
public Builder mergeMetadata(com.google.protobuf.Any value) {
if (metadataBuilder_ == null) {
if (metadata_ != null) {
metadata_ =
com.google.protobuf.Any.newBuilder(metadata_).mergeFrom(value).buildPartial();
} else {
metadata_ = value;
}
onChanged();
} else {
metadataBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* Service-specific metadata associated with the operation. It typically
* contains progress information and common metadata such as create time.
* Some services might not provide such metadata. Any method that returns a
* long-running operation should document the metadata type, if any.
*
*
* .google.protobuf.Any metadata = 2;
*/
public Builder clearMetadata() {
if (metadataBuilder_ == null) {
metadata_ = null;
onChanged();
} else {
metadata_ = null;
metadataBuilder_ = null;
}
return this;
}
/**
*
* Service-specific metadata associated with the operation. It typically
* contains progress information and common metadata such as create time.
* Some services might not provide such metadata. Any method that returns a
* long-running operation should document the metadata type, if any.
*
*
* .google.protobuf.Any metadata = 2;
*/
public com.google.protobuf.Any.Builder getMetadataBuilder() {
onChanged();
return getMetadataFieldBuilder().getBuilder();
}
/**
*
* Service-specific metadata associated with the operation. It typically
* contains progress information and common metadata such as create time.
* Some services might not provide such metadata. Any method that returns a
* long-running operation should document the metadata type, if any.
*
*
* .google.protobuf.Any metadata = 2;
*/
public com.google.protobuf.AnyOrBuilder getMetadataOrBuilder() {
if (metadataBuilder_ != null) {
return metadataBuilder_.getMessageOrBuilder();
} else {
return metadata_ == null ?
com.google.protobuf.Any.getDefaultInstance() : metadata_;
}
}
/**
*
* Service-specific metadata associated with the operation. It typically
* contains progress information and common metadata such as create time.
* Some services might not provide such metadata. Any method that returns a
* long-running operation should document the metadata type, if any.
*
*
* .google.protobuf.Any metadata = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Any, com.google.protobuf.Any.Builder, com.google.protobuf.AnyOrBuilder>
getMetadataFieldBuilder() {
if (metadataBuilder_ == null) {
metadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Any, com.google.protobuf.Any.Builder, com.google.protobuf.AnyOrBuilder>(
getMetadata(),
getParentForChildren(),
isClean());
metadata_ = null;
}
return metadataBuilder_;
}
private boolean done_ ;
/**
*
* If the value is `false`, it means the operation is still in progress.
* If true, the operation is completed, and either `error` or `response` is
* available.
*
*
* bool done = 3;
*/
public boolean getDone() {
return done_;
}
/**
*
* If the value is `false`, it means the operation is still in progress.
* If true, the operation is completed, and either `error` or `response` is
* available.
*
*
* bool done = 3;
*/
public Builder setDone(boolean value) {
done_ = value;
onChanged();
return this;
}
/**
*
* If the value is `false`, it means the operation is still in progress.
* If true, the operation is completed, and either `error` or `response` is
* available.
*
*
* bool done = 3;
*/
public Builder clearDone() {
done_ = false;
onChanged();
return this;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> errorBuilder_;
/**
*
* The error result of the operation in case of failure or cancellation.
*
*
* .google.rpc.Status error = 4;
*/
public boolean hasError() {
return resultCase_ == 4;
}
/**
*
* The error result of the operation in case of failure or cancellation.
*
*
* .google.rpc.Status error = 4;
*/
public com.google.rpc.Status getError() {
if (errorBuilder_ == null) {
if (resultCase_ == 4) {
return (com.google.rpc.Status) result_;
}
return com.google.rpc.Status.getDefaultInstance();
} else {
if (resultCase_ == 4) {
return errorBuilder_.getMessage();
}
return com.google.rpc.Status.getDefaultInstance();
}
}
/**
*
* The error result of the operation in case of failure or cancellation.
*
*
* .google.rpc.Status error = 4;
*/
public Builder setError(com.google.rpc.Status value) {
if (errorBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
result_ = value;
onChanged();
} else {
errorBuilder_.setMessage(value);
}
resultCase_ = 4;
return this;
}
/**
*
* The error result of the operation in case of failure or cancellation.
*
*
* .google.rpc.Status error = 4;
*/
public Builder setError(
com.google.rpc.Status.Builder builderForValue) {
if (errorBuilder_ == null) {
result_ = builderForValue.build();
onChanged();
} else {
errorBuilder_.setMessage(builderForValue.build());
}
resultCase_ = 4;
return this;
}
/**
*
* The error result of the operation in case of failure or cancellation.
*
*
* .google.rpc.Status error = 4;
*/
public Builder mergeError(com.google.rpc.Status value) {
if (errorBuilder_ == null) {
if (resultCase_ == 4 &&
result_ != com.google.rpc.Status.getDefaultInstance()) {
result_ = com.google.rpc.Status.newBuilder((com.google.rpc.Status) result_)
.mergeFrom(value).buildPartial();
} else {
result_ = value;
}
onChanged();
} else {
if (resultCase_ == 4) {
errorBuilder_.mergeFrom(value);
}
errorBuilder_.setMessage(value);
}
resultCase_ = 4;
return this;
}
/**
*
* The error result of the operation in case of failure or cancellation.
*
*
* .google.rpc.Status error = 4;
*/
public Builder clearError() {
if (errorBuilder_ == null) {
if (resultCase_ == 4) {
resultCase_ = 0;
result_ = null;
onChanged();
}
} else {
if (resultCase_ == 4) {
resultCase_ = 0;
result_ = null;
}
errorBuilder_.clear();
}
return this;
}
/**
*
* The error result of the operation in case of failure or cancellation.
*
*
* .google.rpc.Status error = 4;
*/
public com.google.rpc.Status.Builder getErrorBuilder() {
return getErrorFieldBuilder().getBuilder();
}
/**
*
* The error result of the operation in case of failure or cancellation.
*
*
* .google.rpc.Status error = 4;
*/
public com.google.rpc.StatusOrBuilder getErrorOrBuilder() {
if ((resultCase_ == 4) && (errorBuilder_ != null)) {
return errorBuilder_.getMessageOrBuilder();
} else {
if (resultCase_ == 4) {
return (com.google.rpc.Status) result_;
}
return com.google.rpc.Status.getDefaultInstance();
}
}
/**
*
* The error result of the operation in case of failure or cancellation.
*
*
* .google.rpc.Status error = 4;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>
getErrorFieldBuilder() {
if (errorBuilder_ == null) {
if (!(resultCase_ == 4)) {
result_ = com.google.rpc.Status.getDefaultInstance();
}
errorBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>(
(com.google.rpc.Status) result_,
getParentForChildren(),
isClean());
result_ = null;
}
resultCase_ = 4;
onChanged();;
return errorBuilder_;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Any, com.google.protobuf.Any.Builder, com.google.protobuf.AnyOrBuilder> responseBuilder_;
/**
*
* The normal response of the operation in case of success. If the original
* method returns no data on success, such as `Delete`, the response is
* `google.protobuf.Empty`. If the original method is standard
* `Get`/`Create`/`Update`, the response should be the resource. For other
* methods, the response should have the type `XxxResponse`, where `Xxx`
* is the original method name. For example, if the original method name
* is `TakeSnapshot()`, the inferred response type is
* `TakeSnapshotResponse`.
*
*
* .google.protobuf.Any response = 5;
*/
public boolean hasResponse() {
return resultCase_ == 5;
}
/**
*
* The normal response of the operation in case of success. If the original
* method returns no data on success, such as `Delete`, the response is
* `google.protobuf.Empty`. If the original method is standard
* `Get`/`Create`/`Update`, the response should be the resource. For other
* methods, the response should have the type `XxxResponse`, where `Xxx`
* is the original method name. For example, if the original method name
* is `TakeSnapshot()`, the inferred response type is
* `TakeSnapshotResponse`.
*
*
* .google.protobuf.Any response = 5;
*/
public com.google.protobuf.Any getResponse() {
if (responseBuilder_ == null) {
if (resultCase_ == 5) {
return (com.google.protobuf.Any) result_;
}
return com.google.protobuf.Any.getDefaultInstance();
} else {
if (resultCase_ == 5) {
return responseBuilder_.getMessage();
}
return com.google.protobuf.Any.getDefaultInstance();
}
}
/**
*
* The normal response of the operation in case of success. If the original
* method returns no data on success, such as `Delete`, the response is
* `google.protobuf.Empty`. If the original method is standard
* `Get`/`Create`/`Update`, the response should be the resource. For other
* methods, the response should have the type `XxxResponse`, where `Xxx`
* is the original method name. For example, if the original method name
* is `TakeSnapshot()`, the inferred response type is
* `TakeSnapshotResponse`.
*
*
* .google.protobuf.Any response = 5;
*/
public Builder setResponse(com.google.protobuf.Any value) {
if (responseBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
result_ = value;
onChanged();
} else {
responseBuilder_.setMessage(value);
}
resultCase_ = 5;
return this;
}
/**
*
* The normal response of the operation in case of success. If the original
* method returns no data on success, such as `Delete`, the response is
* `google.protobuf.Empty`. If the original method is standard
* `Get`/`Create`/`Update`, the response should be the resource. For other
* methods, the response should have the type `XxxResponse`, where `Xxx`
* is the original method name. For example, if the original method name
* is `TakeSnapshot()`, the inferred response type is
* `TakeSnapshotResponse`.
*
*
* .google.protobuf.Any response = 5;
*/
public Builder setResponse(
com.google.protobuf.Any.Builder builderForValue) {
if (responseBuilder_ == null) {
result_ = builderForValue.build();
onChanged();
} else {
responseBuilder_.setMessage(builderForValue.build());
}
resultCase_ = 5;
return this;
}
/**
*
* The normal response of the operation in case of success. If the original
* method returns no data on success, such as `Delete`, the response is
* `google.protobuf.Empty`. If the original method is standard
* `Get`/`Create`/`Update`, the response should be the resource. For other
* methods, the response should have the type `XxxResponse`, where `Xxx`
* is the original method name. For example, if the original method name
* is `TakeSnapshot()`, the inferred response type is
* `TakeSnapshotResponse`.
*
*
* .google.protobuf.Any response = 5;
*/
public Builder mergeResponse(com.google.protobuf.Any value) {
if (responseBuilder_ == null) {
if (resultCase_ == 5 &&
result_ != com.google.protobuf.Any.getDefaultInstance()) {
result_ = com.google.protobuf.Any.newBuilder((com.google.protobuf.Any) result_)
.mergeFrom(value).buildPartial();
} else {
result_ = value;
}
onChanged();
} else {
if (resultCase_ == 5) {
responseBuilder_.mergeFrom(value);
}
responseBuilder_.setMessage(value);
}
resultCase_ = 5;
return this;
}
/**
*
* The normal response of the operation in case of success. If the original
* method returns no data on success, such as `Delete`, the response is
* `google.protobuf.Empty`. If the original method is standard
* `Get`/`Create`/`Update`, the response should be the resource. For other
* methods, the response should have the type `XxxResponse`, where `Xxx`
* is the original method name. For example, if the original method name
* is `TakeSnapshot()`, the inferred response type is
* `TakeSnapshotResponse`.
*
*
* .google.protobuf.Any response = 5;
*/
public Builder clearResponse() {
if (responseBuilder_ == null) {
if (resultCase_ == 5) {
resultCase_ = 0;
result_ = null;
onChanged();
}
} else {
if (resultCase_ == 5) {
resultCase_ = 0;
result_ = null;
}
responseBuilder_.clear();
}
return this;
}
/**
*
* The normal response of the operation in case of success. If the original
* method returns no data on success, such as `Delete`, the response is
* `google.protobuf.Empty`. If the original method is standard
* `Get`/`Create`/`Update`, the response should be the resource. For other
* methods, the response should have the type `XxxResponse`, where `Xxx`
* is the original method name. For example, if the original method name
* is `TakeSnapshot()`, the inferred response type is
* `TakeSnapshotResponse`.
*
*
* .google.protobuf.Any response = 5;
*/
public com.google.protobuf.Any.Builder getResponseBuilder() {
return getResponseFieldBuilder().getBuilder();
}
/**
*
* The normal response of the operation in case of success. If the original
* method returns no data on success, such as `Delete`, the response is
* `google.protobuf.Empty`. If the original method is standard
* `Get`/`Create`/`Update`, the response should be the resource. For other
* methods, the response should have the type `XxxResponse`, where `Xxx`
* is the original method name. For example, if the original method name
* is `TakeSnapshot()`, the inferred response type is
* `TakeSnapshotResponse`.
*
*
* .google.protobuf.Any response = 5;
*/
public com.google.protobuf.AnyOrBuilder getResponseOrBuilder() {
if ((resultCase_ == 5) && (responseBuilder_ != null)) {
return responseBuilder_.getMessageOrBuilder();
} else {
if (resultCase_ == 5) {
return (com.google.protobuf.Any) result_;
}
return com.google.protobuf.Any.getDefaultInstance();
}
}
/**
*
* The normal response of the operation in case of success. If the original
* method returns no data on success, such as `Delete`, the response is
* `google.protobuf.Empty`. If the original method is standard
* `Get`/`Create`/`Update`, the response should be the resource. For other
* methods, the response should have the type `XxxResponse`, where `Xxx`
* is the original method name. For example, if the original method name
* is `TakeSnapshot()`, the inferred response type is
* `TakeSnapshotResponse`.
*
*
* .google.protobuf.Any response = 5;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Any, com.google.protobuf.Any.Builder, com.google.protobuf.AnyOrBuilder>
getResponseFieldBuilder() {
if (responseBuilder_ == null) {
if (!(resultCase_ == 5)) {
result_ = com.google.protobuf.Any.getDefaultInstance();
}
responseBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Any, com.google.protobuf.Any.Builder, com.google.protobuf.AnyOrBuilder>(
(com.google.protobuf.Any) result_,
getParentForChildren(),
isClean());
result_ = null;
}
resultCase_ = 5;
onChanged();;
return responseBuilder_;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.longrunning.Operation)
}
// @@protoc_insertion_point(class_scope:google.longrunning.Operation)
private static final com.google.longrunning.Operation DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.longrunning.Operation();
}
public static com.google.longrunning.Operation getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
public Operation parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Operation(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public com.google.longrunning.Operation getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}