Interface BuildEventStreamProtos.ConvenienceSymlinkOrBuilder

    • 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

        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.
      • 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

        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.