public interface DownloadDetails
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName()
Get the name of the target file
|
java.lang.String |
getPath()
Get the path of the target file, relative to download directory
|
org.gradle.api.file.RelativePath |
getRelativePath()
Get the path of the target file, relative to download directory
|
java.net.URL |
getSourceURL()
Get the source URL
|
void |
setName(java.lang.String name)
Set the name of the target file
|
void |
setPath(java.lang.String path)
Set the path of the target file (including the filename)
|
void |
setRelativePath(org.gradle.api.file.RelativePath path)
Set the path of the target file (including the filename)
|
void setName(java.lang.String name)
name - the filenamejava.lang.String getName()
java.net.URL getSourceURL()
org.gradle.api.file.RelativePath getRelativePath()
void setRelativePath(org.gradle.api.file.RelativePath path)
path - the path of the target file (including the filename)java.lang.String getPath()
void setPath(java.lang.String path)
path - the path of the target file (including the filename)