java.io.deephaven.proto.backplane.grpc.MoveItemRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/storage.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
public interface MoveItemRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.MoveItemRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The path where the file currently exists
*
*
* string old_path = 1;
* @return The oldPath.
*/
java.lang.String getOldPath();
/**
*
* The path where the file currently exists
*
*
* string old_path = 1;
* @return The bytes for oldPath.
*/
com.google.protobuf.ByteString
getOldPathBytes();
/**
*
* The path where the file should be moved to
*
*
* string new_path = 2;
* @return The newPath.
*/
java.lang.String getNewPath();
/**
*
* The path where the file should be moved to
*
*
* string new_path = 2;
* @return The bytes for newPath.
*/
com.google.protobuf.ByteString
getNewPathBytes();
/**
*
* True to permit replacing an existing file, false to require that no file already exists with that name.
*
*
* bool allow_overwrite = 3;
* @return The allowOverwrite.
*/
boolean getAllowOverwrite();
}