-
- All Implemented Interfaces:
-
com.cognifide.gradle.common.file.transfer.FileTransfer
public interface FileTransferHandler implements FileTransfer
-
-
Method Summary
Modifier and Type Method Description abstract StringgetName()Unique identifier. abstract Property<Boolean>getEnabled()When enabled, transfer will be considered when finding transfer handling particular URL. abstract Provider<Boolean>getParallelable()Determines if operations using this transfer could be done in parallel. -
Methods inherited from class com.cognifide.gradle.common.file.transfer.FileTransferHandler
delete, deleteFrom, download, download, downloadFrom, downloadTo, exists, exists, handles, list, stat, stat, truncate, upload, uploadTo, uploadTo -
Methods inherited from class com.cognifide.gradle.common.file.transfer.FileTransfer
equals, hashCode, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getEnabled
abstract Property<Boolean> getEnabled()
When enabled, transfer will be considered when finding transfer handling particular URL.
-
getParallelable
abstract Provider<Boolean> getParallelable()
Determines if operations using this transfer could be done in parallel.
-
-
-
-