implements
// @@protoc_insertion_point(builder_implements:build.bazel.remote.execution.v2.UpdateActionResultRequest)
build.bazel.remote.execution.v2.UpdateActionResultRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_UpdateActionResultRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_UpdateActionResultRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.bazel.remote.execution.v2.UpdateActionResultRequest.class, build.bazel.remote.execution.v2.UpdateActionResultRequest.Builder.class);
}
// Construct using build.bazel.remote.execution.v2.UpdateActionResultRequest.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
instanceName_ = "";
actionDigest_ = null;
if (actionDigestBuilder_ != null) {
actionDigestBuilder_.dispose();
actionDigestBuilder_ = null;
}
actionResult_ = null;
if (actionResultBuilder_ != null) {
actionResultBuilder_.dispose();
actionResultBuilder_ = null;
}
resultsCachePolicy_ = null;
if (resultsCachePolicyBuilder_ != null) {
resultsCachePolicyBuilder_.dispose();
resultsCachePolicyBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_UpdateActionResultRequest_descriptor;
}
@java.lang.Override
public build.bazel.remote.execution.v2.UpdateActionResultRequest getDefaultInstanceForType() {
return build.bazel.remote.execution.v2.UpdateActionResultRequest.getDefaultInstance();
}
@java.lang.Override
public build.bazel.remote.execution.v2.UpdateActionResultRequest build() {
build.bazel.remote.execution.v2.UpdateActionResultRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public build.bazel.remote.execution.v2.UpdateActionResultRequest buildPartial() {
build.bazel.remote.execution.v2.UpdateActionResultRequest result = new build.bazel.remote.execution.v2.UpdateActionResultRequest(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(build.bazel.remote.execution.v2.UpdateActionResultRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.instanceName_ = instanceName_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.actionDigest_ = actionDigestBuilder_ == null
? actionDigest_
: actionDigestBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.actionResult_ = actionResultBuilder_ == null
? actionResult_
: actionResultBuilder_.build();
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.resultsCachePolicy_ = resultsCachePolicyBuilder_ == null
? resultsCachePolicy_
: resultsCachePolicyBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof build.bazel.remote.execution.v2.UpdateActionResultRequest) {
return mergeFrom((build.bazel.remote.execution.v2.UpdateActionResultRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(build.bazel.remote.execution.v2.UpdateActionResultRequest other) {
if (other == build.bazel.remote.execution.v2.UpdateActionResultRequest.getDefaultInstance()) return this;
if (!other.getInstanceName().isEmpty()) {
instanceName_ = other.instanceName_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasActionDigest()) {
mergeActionDigest(other.getActionDigest());
}
if (other.hasActionResult()) {
mergeActionResult(other.getActionResult());
}
if (other.hasResultsCachePolicy()) {
mergeResultsCachePolicy(other.getResultsCachePolicy());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
instanceName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getActionDigestFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
input.readMessage(
getActionResultFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 26
case 34: {
input.readMessage(
getResultsCachePolicyFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000008;
break;
} // case 34
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object instanceName_ = "";
/**
*
* The instance of the execution system to operate against. A server may
* support multiple instances of the execution system (with their own workers,
* storage, caches, etc.). The server MAY require use of this field to select
* between them in an implementation-defined fashion, otherwise it can be
* omitted.
*
*
* string instance_name = 1;
* @return The instanceName.
*/
public java.lang.String getInstanceName() {
java.lang.Object ref = instanceName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
instanceName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The instance of the execution system to operate against. A server may
* support multiple instances of the execution system (with their own workers,
* storage, caches, etc.). The server MAY require use of this field to select
* between them in an implementation-defined fashion, otherwise it can be
* omitted.
*
*
* string instance_name = 1;
* @return The bytes for instanceName.
*/
public com.google.protobuf.ByteString
getInstanceNameBytes() {
java.lang.Object ref = instanceName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
instanceName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The instance of the execution system to operate against. A server may
* support multiple instances of the execution system (with their own workers,
* storage, caches, etc.). The server MAY require use of this field to select
* between them in an implementation-defined fashion, otherwise it can be
* omitted.
*
*
* string instance_name = 1;
* @param value The instanceName to set.
* @return This builder for chaining.
*/
public Builder setInstanceName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
instanceName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The instance of the execution system to operate against. A server may
* support multiple instances of the execution system (with their own workers,
* storage, caches, etc.). The server MAY require use of this field to select
* between them in an implementation-defined fashion, otherwise it can be
* omitted.
*
*
* string instance_name = 1;
* @return This builder for chaining.
*/
public Builder clearInstanceName() {
instanceName_ = getDefaultInstance().getInstanceName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
* The instance of the execution system to operate against. A server may
* support multiple instances of the execution system (with their own workers,
* storage, caches, etc.). The server MAY require use of this field to select
* between them in an implementation-defined fashion, otherwise it can be
* omitted.
*
*
* string instance_name = 1;
* @param value The bytes for instanceName to set.
* @return This builder for chaining.
*/
public Builder setInstanceNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
instanceName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private build.bazel.remote.execution.v2.Digest actionDigest_;
private com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.Digest, build.bazel.remote.execution.v2.Digest.Builder, build.bazel.remote.execution.v2.DigestOrBuilder> actionDigestBuilder_;
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
* @return Whether the actionDigest field is set.
*/
public boolean hasActionDigest() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
* @return The actionDigest.
*/
public build.bazel.remote.execution.v2.Digest getActionDigest() {
if (actionDigestBuilder_ == null) {
return actionDigest_ == null ? build.bazel.remote.execution.v2.Digest.getDefaultInstance() : actionDigest_;
} else {
return actionDigestBuilder_.getMessage();
}
}
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
*/
public Builder setActionDigest(build.bazel.remote.execution.v2.Digest value) {
if (actionDigestBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
actionDigest_ = value;
} else {
actionDigestBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
*/
public Builder setActionDigest(
build.bazel.remote.execution.v2.Digest.Builder builderForValue) {
if (actionDigestBuilder_ == null) {
actionDigest_ = builderForValue.build();
} else {
actionDigestBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
*/
public Builder mergeActionDigest(build.bazel.remote.execution.v2.Digest value) {
if (actionDigestBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
actionDigest_ != null &&
actionDigest_ != build.bazel.remote.execution.v2.Digest.getDefaultInstance()) {
getActionDigestBuilder().mergeFrom(value);
} else {
actionDigest_ = value;
}
} else {
actionDigestBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
*/
public Builder clearActionDigest() {
bitField0_ = (bitField0_ & ~0x00000002);
actionDigest_ = null;
if (actionDigestBuilder_ != null) {
actionDigestBuilder_.dispose();
actionDigestBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
*/
public build.bazel.remote.execution.v2.Digest.Builder getActionDigestBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getActionDigestFieldBuilder().getBuilder();
}
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
*/
public build.bazel.remote.execution.v2.DigestOrBuilder getActionDigestOrBuilder() {
if (actionDigestBuilder_ != null) {
return actionDigestBuilder_.getMessageOrBuilder();
} else {
return actionDigest_ == null ?
build.bazel.remote.execution.v2.Digest.getDefaultInstance() : actionDigest_;
}
}
/**
*
* The digest of the [Action][build.bazel.remote.execution.v2.Action]
* whose result is being uploaded.
*
*
* .build.bazel.remote.execution.v2.Digest action_digest = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.Digest, build.bazel.remote.execution.v2.Digest.Builder, build.bazel.remote.execution.v2.DigestOrBuilder>
getActionDigestFieldBuilder() {
if (actionDigestBuilder_ == null) {
actionDigestBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.Digest, build.bazel.remote.execution.v2.Digest.Builder, build.bazel.remote.execution.v2.DigestOrBuilder>(
getActionDigest(),
getParentForChildren(),
isClean());
actionDigest_ = null;
}
return actionDigestBuilder_;
}
private build.bazel.remote.execution.v2.ActionResult actionResult_;
private com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.ActionResult, build.bazel.remote.execution.v2.ActionResult.Builder, build.bazel.remote.execution.v2.ActionResultOrBuilder> actionResultBuilder_;
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
* @return Whether the actionResult field is set.
*/
public boolean hasActionResult() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
* @return The actionResult.
*/
public build.bazel.remote.execution.v2.ActionResult getActionResult() {
if (actionResultBuilder_ == null) {
return actionResult_ == null ? build.bazel.remote.execution.v2.ActionResult.getDefaultInstance() : actionResult_;
} else {
return actionResultBuilder_.getMessage();
}
}
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
*/
public Builder setActionResult(build.bazel.remote.execution.v2.ActionResult value) {
if (actionResultBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
actionResult_ = value;
} else {
actionResultBuilder_.setMessage(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
*/
public Builder setActionResult(
build.bazel.remote.execution.v2.ActionResult.Builder builderForValue) {
if (actionResultBuilder_ == null) {
actionResult_ = builderForValue.build();
} else {
actionResultBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
*/
public Builder mergeActionResult(build.bazel.remote.execution.v2.ActionResult value) {
if (actionResultBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0) &&
actionResult_ != null &&
actionResult_ != build.bazel.remote.execution.v2.ActionResult.getDefaultInstance()) {
getActionResultBuilder().mergeFrom(value);
} else {
actionResult_ = value;
}
} else {
actionResultBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
*/
public Builder clearActionResult() {
bitField0_ = (bitField0_ & ~0x00000004);
actionResult_ = null;
if (actionResultBuilder_ != null) {
actionResultBuilder_.dispose();
actionResultBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
*/
public build.bazel.remote.execution.v2.ActionResult.Builder getActionResultBuilder() {
bitField0_ |= 0x00000004;
onChanged();
return getActionResultFieldBuilder().getBuilder();
}
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
*/
public build.bazel.remote.execution.v2.ActionResultOrBuilder getActionResultOrBuilder() {
if (actionResultBuilder_ != null) {
return actionResultBuilder_.getMessageOrBuilder();
} else {
return actionResult_ == null ?
build.bazel.remote.execution.v2.ActionResult.getDefaultInstance() : actionResult_;
}
}
/**
*
* The [ActionResult][build.bazel.remote.execution.v2.ActionResult]
* to store in the cache.
*
*
* .build.bazel.remote.execution.v2.ActionResult action_result = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.ActionResult, build.bazel.remote.execution.v2.ActionResult.Builder, build.bazel.remote.execution.v2.ActionResultOrBuilder>
getActionResultFieldBuilder() {
if (actionResultBuilder_ == null) {
actionResultBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.ActionResult, build.bazel.remote.execution.v2.ActionResult.Builder, build.bazel.remote.execution.v2.ActionResultOrBuilder>(
getActionResult(),
getParentForChildren(),
isClean());
actionResult_ = null;
}
return actionResultBuilder_;
}
private build.bazel.remote.execution.v2.ResultsCachePolicy resultsCachePolicy_;
private com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.ResultsCachePolicy, build.bazel.remote.execution.v2.ResultsCachePolicy.Builder, build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder> resultsCachePolicyBuilder_;
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
* @return Whether the resultsCachePolicy field is set.
*/
public boolean hasResultsCachePolicy() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
* @return The resultsCachePolicy.
*/
public build.bazel.remote.execution.v2.ResultsCachePolicy getResultsCachePolicy() {
if (resultsCachePolicyBuilder_ == null) {
return resultsCachePolicy_ == null ? build.bazel.remote.execution.v2.ResultsCachePolicy.getDefaultInstance() : resultsCachePolicy_;
} else {
return resultsCachePolicyBuilder_.getMessage();
}
}
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
*/
public Builder setResultsCachePolicy(build.bazel.remote.execution.v2.ResultsCachePolicy value) {
if (resultsCachePolicyBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resultsCachePolicy_ = value;
} else {
resultsCachePolicyBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
*/
public Builder setResultsCachePolicy(
build.bazel.remote.execution.v2.ResultsCachePolicy.Builder builderForValue) {
if (resultsCachePolicyBuilder_ == null) {
resultsCachePolicy_ = builderForValue.build();
} else {
resultsCachePolicyBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
*/
public Builder mergeResultsCachePolicy(build.bazel.remote.execution.v2.ResultsCachePolicy value) {
if (resultsCachePolicyBuilder_ == null) {
if (((bitField0_ & 0x00000008) != 0) &&
resultsCachePolicy_ != null &&
resultsCachePolicy_ != build.bazel.remote.execution.v2.ResultsCachePolicy.getDefaultInstance()) {
getResultsCachePolicyBuilder().mergeFrom(value);
} else {
resultsCachePolicy_ = value;
}
} else {
resultsCachePolicyBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
*/
public Builder clearResultsCachePolicy() {
bitField0_ = (bitField0_ & ~0x00000008);
resultsCachePolicy_ = null;
if (resultsCachePolicyBuilder_ != null) {
resultsCachePolicyBuilder_.dispose();
resultsCachePolicyBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
*/
public build.bazel.remote.execution.v2.ResultsCachePolicy.Builder getResultsCachePolicyBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getResultsCachePolicyFieldBuilder().getBuilder();
}
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
*/
public build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder getResultsCachePolicyOrBuilder() {
if (resultsCachePolicyBuilder_ != null) {
return resultsCachePolicyBuilder_.getMessageOrBuilder();
} else {
return resultsCachePolicy_ == null ?
build.bazel.remote.execution.v2.ResultsCachePolicy.getDefaultInstance() : resultsCachePolicy_;
}
}
/**
*
* An optional policy for the results of this execution in the remote cache.
* The server will have a default policy if this is not provided.
* This may be applied to both the ActionResult and the associated blobs.
*
*
* .build.bazel.remote.execution.v2.ResultsCachePolicy results_cache_policy = 4;
*/
private com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.ResultsCachePolicy, build.bazel.remote.execution.v2.ResultsCachePolicy.Builder, build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder>
getResultsCachePolicyFieldBuilder() {
if (resultsCachePolicyBuilder_ == null) {
resultsCachePolicyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
build.bazel.remote.execution.v2.ResultsCachePolicy, build.bazel.remote.execution.v2.ResultsCachePolicy.Builder, build.bazel.remote.execution.v2.ResultsCachePolicyOrBuilder>(
getResultsCachePolicy(),
getParentForChildren(),
isClean());
resultsCachePolicy_ = null;
}
return resultsCachePolicyBuilder_;
}
@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:build.bazel.remote.execution.v2.UpdateActionResultRequest)
}
// @@protoc_insertion_point(class_scope:build.bazel.remote.execution.v2.UpdateActionResultRequest)
private static final build.bazel.remote.execution.v2.UpdateActionResultRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new build.bazel.remote.execution.v2.UpdateActionResultRequest();
}
public static build.bazel.remote.execution.v2.UpdateActionResultRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public UpdateActionResultRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public build.bazel.remote.execution.v2.UpdateActionResultRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}