1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-08 00:16:09 +00:00
android-library/src/com/owncloud/android/lib/resources/files/MoveRemoteChunksFileOperation.java
2018-09-04 15:50:24 +02:00

16 lines
560 B
Java

package com.owncloud.android.lib.resources.files;
public class MoveRemoteChunksFileOperation extends MoveRemoteFileOperation {
/**
* Constructor.
*
* @param srcRemotePath Remote path of the file/folder to move.
* @param targetRemotePath Remove path desired for the file/folder after moving it.
* @param overwrite
*/
public MoveRemoteChunksFileOperation(String srcRemotePath, String targetRemotePath, boolean overwrite) {
super(srcRemotePath, targetRemotePath, overwrite);
isChunkedFile = true;
}
}