use of org.apache.ivy.core.cache.CacheDownloadOptions in project ant-ivy by apache.
the class AbstractResolver method getCacheDownloadOptions.
protected CacheDownloadOptions getCacheDownloadOptions(DownloadOptions options) {
CacheDownloadOptions cacheDownloadOptions = new CacheDownloadOptions();
cacheDownloadOptions.setListener(getDownloadListener(options));
return cacheDownloadOptions;
}
Aggregations