public class Downloader
| Constructor and Description |
|---|
Downloader(AemExtension aem) |
| Modifier and Type | Method and Description |
|---|---|
void |
download() |
boolean |
getExtract()
Allows to disable extracting contents of download package to directory.
|
java.io.File |
getExtractDir()
Path in which downloader JCR content will be extracted.
|
FilterFile |
getFilter()
Determines VLT filter used to grab JCR content from AEM instance.
|
Instance |
getInstance()
Determines instance from which JCR content will be downloaded.
|
Retry |
getRetry()
Repeat download when failed (brute-forcing).
|
void |
setExtract(boolean p)
Allows to disable extracting contents of download package to directory.
|
void |
setExtractDir(java.io.File p)
Path in which downloader JCR content will be extracted.
|
void |
setFilter(FilterFile p)
Determines VLT filter used to grab JCR content from AEM instance.
|
void |
setInstance(Instance p)
Determines instance from which JCR content will be downloaded.
|
void |
setRetry(Retry p)
Repeat download when failed (brute-forcing).
|
public Downloader(@NotNull
AemExtension aem)
@NotNull public Instance getInstance()
Determines instance from which JCR content will be downloaded.
public void setInstance(@NotNull
Instance p)
Determines instance from which JCR content will be downloaded.
@NotNull public FilterFile getFilter()
Determines VLT filter used to grab JCR content from AEM instance.
public void setFilter(@NotNull
FilterFile p)
Determines VLT filter used to grab JCR content from AEM instance.
public boolean getExtract()
Allows to disable extracting contents of download package to directory.
This operation can be modified using '-Pforce' command line to replace the contents of extract directory with package content.
public void setExtract(boolean p)
Allows to disable extracting contents of download package to directory.
This operation can be modified using '-Pforce' command line to replace the contents of extract directory with package content.
@NotNull public java.io.File getExtractDir()
Path in which downloader JCR content will be extracted.
public void setExtractDir(@NotNull
java.io.File p)
Path in which downloader JCR content will be extracted.
@NotNull public Retry getRetry()
Repeat download when failed (brute-forcing).
public void setRetry(@NotNull
Retry p)
Repeat download when failed (brute-forcing).
public void download()