Uses of Class
org.owasp.dependencycheck.utils.TooManyRequestsException

Packages that use TooManyRequestsException
Package
Description
Includes various utility classes such as a Settings wrapper, utilities to make URL Connections, etc.
  • Uses of TooManyRequestsException in org.owasp.dependencycheck.utils

    Modifier and Type
    Method
    Description
    <T> T
    Downloader.fetchAndHandle(@NonNull URL url, @NonNull org.apache.hc.core5.http.io.HttpClientResponseHandler<T> handler)
    Download a resource from the given URL and have its content handled by the given ResponseHandler.
    <T> T
    Downloader.fetchAndHandle(@NonNull URL url, @NonNull org.apache.hc.core5.http.io.HttpClientResponseHandler<T> handler, @NonNull List<org.apache.hc.core5.http.Header> hdr)
    Download a resource from the given URL and have its content handled by the given ResponseHandler.
    <T> T
    Downloader.fetchAndHandle(@NonNull URL url, @NonNull org.apache.hc.core5.http.io.HttpClientResponseHandler<T> handler, @NonNull List<org.apache.hc.core5.http.Header> hdr, boolean useProxy)
    Download a resource from the given URL and have its content handled by the given ResponseHandler.
    <T> T
    Downloader.fetchAndHandle(@NonNull org.apache.hc.client5.http.impl.classic.CloseableHttpClient client, @NonNull URL url, @NonNull org.apache.hc.core5.http.io.HttpClientResponseHandler<T> handler, @NonNull List<org.apache.hc.core5.http.Header> hdr)
    Download a resource from the given URL and have its content handled by the given ResponseHandler.
    Downloader.fetchContent(URL url, boolean useProxy, Charset charset)
    Retrieves a file from a given URL and returns the contents.
    Downloader.fetchContent(URL url, Charset charset)
    Retrieves a file from a given URL and returns the contents.
    void
    Downloader.fetchFile(URL url, File outputPath)
    Retrieves a file from a given URL and saves it to the outputPath.
    void
    Downloader.fetchFile(URL url, File outputPath, boolean useProxy)
    Retrieves a file from a given URL and saves it to the outputPath.
    void
    Downloader.fetchFile(URL url, File outputPath, boolean useProxy, String userKey, String passwordKey, String tokenKey)
    Retrieves a file from a given URL using an ad-hoc created CredentialsProvider if needed and saves it to the outputPath.
    Downloader.postBasedFetchContent(URI url, String payload, org.apache.hc.core5.http.ContentType payloadType, List<org.apache.hc.core5.http.Header> hdr)
    Posts a payload to the URL and returns the response as a string.