Interface BuildEventStreamProtos.ConvenienceSymlinkOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BuildEventStreamProtos.ConvenienceSymlink,BuildEventStreamProtos.ConvenienceSymlink.Builder
- Enclosing class:
- BuildEventStreamProtos
public static interface BuildEventStreamProtos.ConvenienceSymlinkOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BuildEventStreamProtos.ConvenienceSymlink.ActiongetAction()The operation we are performing on the symlink.intgetActionValue()The operation we are performing on the symlink.java.lang.StringgetPath()The path of the symlink to be created or deleted, absolute or relative to the workspace, creating any directories necessary.com.google.protobuf.ByteStringgetPathBytes()The path of the symlink to be created or deleted, absolute or relative to the workspace, creating any directories necessary.java.lang.StringgetTarget()If action is CREATE, this is the target path that the symlink should point to.com.google.protobuf.ByteStringgetTargetBytes()If action is CREATE, this is the target path that the symlink should point to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPath
java.lang.String getPath()
The path of the symlink to be created or deleted, absolute or relative to the workspace, creating any directories necessary. If a symlink already exists at that location, then it should be replaced by a symlink pointing to the new target.
string path = 1;- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
The path of the symlink to be created or deleted, absolute or relative to the workspace, creating any directories necessary. If a symlink already exists at that location, then it should be replaced by a symlink pointing to the new target.
string path = 1;- Returns:
- The bytes for path.
-
getActionValue
int getActionValue()
The operation we are performing on the symlink.
.build_event_stream.ConvenienceSymlink.Action action = 2;- Returns:
- The enum numeric value on the wire for action.
-
getAction
BuildEventStreamProtos.ConvenienceSymlink.Action getAction()
The operation we are performing on the symlink.
.build_event_stream.ConvenienceSymlink.Action action = 2;- Returns:
- The action.
-
getTarget
java.lang.String getTarget()
If action is CREATE, this is the target path that the symlink should point to. If the path points underneath the output base, it is relative to the output base; otherwise it is absolute. If action is DELETE, this field is not set.
string target = 3;- Returns:
- The target.
-
getTargetBytes
com.google.protobuf.ByteString getTargetBytes()
If action is CREATE, this is the target path that the symlink should point to. If the path points underneath the output base, it is relative to the output base; otherwise it is absolute. If action is DELETE, this field is not set.
string target = 3;- Returns:
- The bytes for target.
-
-