Uses of Class
org.owasp.dependencycheck.utils.DownloadFailedException
-
Packages that use DownloadFailedException Package Description org.owasp.dependencycheck.utils Includes various utility classes such as a Settings wrapper, utilities to make URL Connections, etc. -
-
Uses of DownloadFailedException in org.owasp.dependencycheck.utils
Methods in org.owasp.dependencycheck.utils that throw DownloadFailedException Modifier and Type Method Description java.lang.String
Downloader. fetchContent(java.net.URL url, boolean useProxy, java.nio.charset.Charset charset)
Retrieves a file from a given URL and returns the contents.java.lang.String
Downloader. fetchContent(java.net.URL url, java.nio.charset.Charset charset)
Retrieves a file from a given URL and returns the contents.void
Downloader. fetchFile(java.net.URL url, java.io.File outputPath)
Retrieves a file from a given URL and saves it to the outputPath.void
Downloader. fetchFile(java.net.URL url, java.io.File outputPath, boolean useProxy)
Retrieves a file from a given URL and saves it to the outputPath.void
Downloader. fetchFile(java.net.URL url, java.io.File outputPath, boolean useProxy, java.lang.String userKey, java.lang.String passwordKey)
Retrieves a file from a given URL using an ad-hoc created CredentialsProvider if needed and saves it to the outputPath.java.lang.String
Downloader. postBasedFetchContent(java.net.URI url, java.lang.String payload, org.apache.hc.core5.http.ContentType payloadType, java.util.List<org.apache.hc.core5.http.Header> hdr)
Posts a payload to the URL and returns the response as a string.
-