Class HttpFileStorageConfiguration

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final String getUrl() The URL of the HTTP server, e.g.
      final String getQuery() The query string that is appended to the combination of the URL and some additional path.
      final Map<String, String> getHeaders() Custom headers that are added to all HTTP requests.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getUrl

         final String getUrl()

        The URL of the HTTP server, e.g. "https://example.com/storage".

      • getQuery

         final String getQuery()

        The query string that is appended to the combination of the URL and some additional path. Some storages process authentication via parameters that are within the final URL, so certain credentials can be stored in this query, e.g, "?user=standard&pwd=123". Thus, the final URL could be "https://example.com/storage/path?user=standard&pwd=123".

      • getHeaders

         final Map<String, String> getHeaders()

        Custom headers that are added to all HTTP requests. As headers are likely to contain sensitive information like credentials, values are masked when this class is serialized with Jackson.