Interface MoveItemRequestOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MoveItemRequest
,MoveItemRequest.Builder
public interface MoveItemRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionboolean
True to permit replacing an existing file, false to require that no file already exists with that name.The path where the file should be moved tocom.google.protobuf.ByteString
The path where the file should be moved toThe path where the file currently existscom.google.protobuf.ByteString
The path where the file currently existsMethods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getOldPath
String getOldPath()The path where the file currently exists
string old_path = 1;
- Returns:
- The oldPath.
-
getOldPathBytes
com.google.protobuf.ByteString getOldPathBytes()The path where the file currently exists
string old_path = 1;
- Returns:
- The bytes for oldPath.
-
getNewPath
String getNewPath()The path where the file should be moved to
string new_path = 2;
- Returns:
- The newPath.
-
getNewPathBytes
com.google.protobuf.ByteString getNewPathBytes()The path where the file should be moved to
string new_path = 2;
- Returns:
- The bytes for newPath.
-
getAllowOverwrite
boolean getAllowOverwrite()True to permit replacing an existing file, false to require that no file already exists with that name.
bool allow_overwrite = 3;
- Returns:
- The allowOverwrite.
-