mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-08 00:16:09 +00:00
16 lines
560 B
Java
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;
|
|
}
|
|
} |