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.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: build/bazel/remote/execution/v2/remote_execution.proto
package build.bazel.remote.execution.v2;
/**
*
* An `OutputSymlink` is similar to a
* [Symlink][build.bazel.remote.execution.v2.SymlinkNode], but it is used as an
* output in an `ActionResult`.
*
* `OutputSymlink` is binary-compatible with `SymlinkNode`.
*
*
* Protobuf type {@code build.bazel.remote.execution.v2.OutputSymlink}
*/
public final class OutputSymlink extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:build.bazel.remote.execution.v2.OutputSymlink)
OutputSymlinkOrBuilder {
private static final long serialVersionUID = 0L;
// Use OutputSymlink.newBuilder() to construct.
private OutputSymlink(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private OutputSymlink() {
path_ = "";
target_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new OutputSymlink();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_OutputSymlink_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_OutputSymlink_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.bazel.remote.execution.v2.OutputSymlink.class, build.bazel.remote.execution.v2.OutputSymlink.Builder.class);
}
public static final int PATH_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object path_ = "";
/**
*
* The full path of the symlink relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
* The full path of the symlink relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @return The bytes for path.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getPathBytes() {
java.lang.Object ref = path_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
path_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TARGET_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object target_ = "";
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path.
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path.
*
*
* string target = 2;
* @return The bytes for target.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTargetBytes() {
java.lang.Object ref = target_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
target_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int NODE_PROPERTIES_FIELD_NUMBER = 4;
private build.bazel.remote.execution.v2.NodeProperties nodeProperties_;
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 4;
* @return Whether the nodeProperties field is set.
*/
@java.lang.Override
public boolean hasNodeProperties() {
return nodeProperties_ != null;
}
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 4;
* @return The nodeProperties.
*/
@java.lang.Override
public build.bazel.remote.execution.v2.NodeProperties getNodeProperties() {
return nodeProperties_ == null ? build.bazel.remote.execution.v2.NodeProperties.getDefaultInstance() : nodeProperties_;
}
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 4;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.NodePropertiesOrBuilder getNodePropertiesOrBuilder() {
return nodeProperties_ == null ? build.bazel.remote.execution.v2.NodeProperties.getDefaultInstance() : nodeProperties_;
}
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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, path_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(target_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, target_);
}
if (nodeProperties_ != null) {
output.writeMessage(4, getNodeProperties());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(path_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, path_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(target_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, target_);
}
if (nodeProperties_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, getNodeProperties());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof build.bazel.remote.execution.v2.OutputSymlink)) {
return super.equals(obj);
}
build.bazel.remote.execution.v2.OutputSymlink other = (build.bazel.remote.execution.v2.OutputSymlink) obj;
if (!getPath()
.equals(other.getPath())) return false;
if (!getTarget()
.equals(other.getTarget())) return false;
if (hasNodeProperties() != other.hasNodeProperties()) return false;
if (hasNodeProperties()) {
if (!getNodeProperties()
.equals(other.getNodeProperties())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) 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) + PATH_FIELD_NUMBER;
hash = (53 * hash) + getPath().hashCode();
hash = (37 * hash) + TARGET_FIELD_NUMBER;
hash = (53 * hash) + getTarget().hashCode();
if (hasNodeProperties()) {
hash = (37 * hash) + NODE_PROPERTIES_FIELD_NUMBER;
hash = (53 * hash) + getNodeProperties().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static build.bazel.remote.execution.v2.OutputSymlink parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.OutputSymlink parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.OutputSymlink parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.OutputSymlink parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.OutputSymlink parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.OutputSymlink parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.OutputSymlink parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.OutputSymlink 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 build.bazel.remote.execution.v2.OutputSymlink parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.OutputSymlink 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 build.bazel.remote.execution.v2.OutputSymlink parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.OutputSymlink 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(build.bazel.remote.execution.v2.OutputSymlink 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;
}
/**
*
* An `OutputSymlink` is similar to a
* [Symlink][build.bazel.remote.execution.v2.SymlinkNode], but it is used as an
* output in an `ActionResult`.
*
* `OutputSymlink` is binary-compatible with `SymlinkNode`.
*
*
* Protobuf type {@code build.bazel.remote.execution.v2.OutputSymlink}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:build.bazel.remote.execution.v2.OutputSymlink)
build.bazel.remote.execution.v2.OutputSymlinkOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_OutputSymlink_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_OutputSymlink_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.bazel.remote.execution.v2.OutputSymlink.class, build.bazel.remote.execution.v2.OutputSymlink.Builder.class);
}
// Construct using build.bazel.remote.execution.v2.OutputSymlink.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
path_ = "";
target_ = "";
nodeProperties_ = null;
if (nodePropertiesBuilder_ != null) {
nodePropertiesBuilder_.dispose();
nodePropertiesBuilder_ = 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_OutputSymlink_descriptor;
}
@java.lang.Override
public build.bazel.remote.execution.v2.OutputSymlink getDefaultInstanceForType() {
return build.bazel.remote.execution.v2.OutputSymlink.getDefaultInstance();
}
@java.lang.Override
public build.bazel.remote.execution.v2.OutputSymlink build() {
build.bazel.remote.execution.v2.OutputSymlink result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public build.bazel.remote.execution.v2.OutputSymlink buildPartial() {
build.bazel.remote.execution.v2.OutputSymlink result = new build.bazel.remote.execution.v2.OutputSymlink(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(build.bazel.remote.execution.v2.OutputSymlink result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.path_ = path_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.target_ = target_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.nodeProperties_ = nodePropertiesBuilder_ == null
? nodeProperties_
: nodePropertiesBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof build.bazel.remote.execution.v2.OutputSymlink) {
return mergeFrom((build.bazel.remote.execution.v2.OutputSymlink)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(build.bazel.remote.execution.v2.OutputSymlink other) {
if (other == build.bazel.remote.execution.v2.OutputSymlink.getDefaultInstance()) return this;
if (!other.getPath().isEmpty()) {
path_ = other.path_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getTarget().isEmpty()) {
target_ = other.target_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.hasNodeProperties()) {
mergeNodeProperties(other.getNodeProperties());
}
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: {
path_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
target_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 34: {
input.readMessage(
getNodePropertiesFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000004;
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 path_ = "";
/**
*
* The full path of the symlink relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
* The full path of the symlink relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @return The bytes for path.
*/
public com.google.protobuf.ByteString
getPathBytes() {
java.lang.Object ref = path_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
path_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The full path of the symlink relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @param value The path to set.
* @return This builder for chaining.
*/
public Builder setPath(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
path_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The full path of the symlink relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
* The full path of the symlink relative to the working directory, including the
* filename. The path separator is a forward slash `/`. Since this is a
* relative path, it MUST NOT begin with a leading forward slash.
*
*
* string path = 1;
* @param value The bytes for path to set.
* @return This builder for chaining.
*/
public Builder setPathBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
path_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object target_ = "";
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path.
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path.
*
*
* string target = 2;
* @return The bytes for target.
*/
public com.google.protobuf.ByteString
getTargetBytes() {
java.lang.Object ref = target_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
target_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path.
*
*
* string target = 2;
* @param value The target to set.
* @return This builder for chaining.
*/
public Builder setTarget(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
target_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path.
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path.
*