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 Type
    Method
    Description
    boolean
    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 to
    com.google.protobuf.ByteString
    The path where the file should be moved to
    The path where the file currently exists
    com.google.protobuf.ByteString
    The path where the file currently exists

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