build.bazel.remote.execution.v2.GetTreeResponseOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: build/bazel/remote/execution/v2/remote_execution.proto
package build.bazel.remote.execution.v2;
public interface GetTreeResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.execution.v2.GetTreeResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The directories descended from the requested root.
*
*
* repeated .build.bazel.remote.execution.v2.Directory directories = 1;
*/
java.util.List
getDirectoriesList();
/**
*
* The directories descended from the requested root.
*
*
* repeated .build.bazel.remote.execution.v2.Directory directories = 1;
*/
build.bazel.remote.execution.v2.Directory getDirectories(int index);
/**
*
* The directories descended from the requested root.
*
*
* repeated .build.bazel.remote.execution.v2.Directory directories = 1;
*/
int getDirectoriesCount();
/**
*
* The directories descended from the requested root.
*
*
* repeated .build.bazel.remote.execution.v2.Directory directories = 1;
*/
java.util.List extends build.bazel.remote.execution.v2.DirectoryOrBuilder>
getDirectoriesOrBuilderList();
/**
*
* The directories descended from the requested root.
*
*
* repeated .build.bazel.remote.execution.v2.Directory directories = 1;
*/
build.bazel.remote.execution.v2.DirectoryOrBuilder getDirectoriesOrBuilder(
int index);
/**
*
* If present, signifies that there are more results which the client can
* retrieve by passing this as the page_token in a subsequent
* [request][build.bazel.remote.execution.v2.GetTreeRequest].
* If empty, signifies that this is the last page of results.
*
*
* string next_page_token = 2;
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
/**
*
* If present, signifies that there are more results which the client can
* retrieve by passing this as the page_token in a subsequent
* [request][build.bazel.remote.execution.v2.GetTreeRequest].
* If empty, signifies that this is the last page of results.
*
*
* string next_page_token = 2;
* @return The bytes for nextPageToken.
*/
com.google.protobuf.ByteString
getNextPageTokenBytes();
}