Class Http4FileSystemConfigBuilder

java.lang.Object
org.apache.commons.vfs2.FileSystemConfigBuilder
org.apache.commons.vfs2.provider.http4.Http4FileSystemConfigBuilder

Deprecated.
Use
invalid reference
org.apache.commons.vfs2.provider.http5
.
Configuration options builder utility for http4 provider.
Since:
2.3
  • Field Details

  • Constructor Details

    • Http4FileSystemConfigBuilder

      Deprecated.
      Constructs an Http4FileSystemConfigBuilder.
      Parameters:
      prefix - String for properties of this file system.
  • Method Details

    • getInstance

      Deprecated.
      Gets the singleton builder.
      Returns:
      the singleton builder.
    • getConfigClass

      protected Class<? extends FileSystem> getConfigClass()
      Deprecated.
      Description copied from class: FileSystemConfigBuilder
      Gets the target of this configuration.
      Specified by:
      getConfigClass in class FileSystemConfigBuilder
      Returns:
      the specific file system class
    • getConnectionTimeout

      Gets the connection timeout.
      Parameters:
      opts - The FileSystem options.
      Returns:
      The connection timeout.
    • getConnectionTimeoutDuration

      Deprecated.
      /** Gets the connection timeout.
      Parameters:
      opts - The FileSystem options.
      Returns:
      The connection timeout.
      Since:
      2.8.0
    • getCookies

      public org.apache.http.cookie.Cookie[] getCookies(FileSystemOptions opts)
      Deprecated.
      Gets the cookies to add to the request.
      Parameters:
      opts - The FileSystem options.
      Returns:
      the Cookie array.
    • getFollowRedirect

      public boolean getFollowRedirect(FileSystemOptions opts)
      Deprecated.
      Gets whether to follow redirects for the connection.
      Parameters:
      opts - The FileSystem options.
      Returns:
      true to follow redirects, false not to.
      See Also:
    • getKeyStoreFile

      Deprecated.
      Gets keystore file path to be used in SSL connections.
      Parameters:
      opts - the file system options to modify
      Returns:
      keystore file path to be used in SSL connections
    • getKeyStoreType

      Deprecated.
      Gets keystore type for SSL connections.
      Parameters:
      opts - the file system options to modify
      Returns:
      keystore type for SSL connections
      Since:
      2.7.0
    • getMaxConnectionsPerHost

      Deprecated.
      Gets the maximum number of connections allowed per host.
      Parameters:
      opts - The FileSystemOptions.
      Returns:
      The maximum number of connections allowed per host.
    • getMaxTotalConnections

      Deprecated.
      Gets the maximum number of connections allowed.
      Parameters:
      opts - The FileSystemOptions.
      Returns:
      The maximum number of connections allowed.
    • getProxyAuthenticator

      Deprecated.
      Gets the proxy authenticator where the system should get the credentials from.
      Parameters:
      opts - The FileSystem options.
      Returns:
      The UserAuthenticator.
    • getProxyHost

      Deprecated.
      Gets the proxy to use for http connection. You have to set the ProxyPort too if you would like to have the proxy really used.
      Parameters:
      opts - The FileSystem options.
      Returns:
      proxyHost
      See Also:
    • getProxyPort

      public int getProxyPort(FileSystemOptions opts)
      Deprecated.
      Gets the proxy-port to use for http the connection. You have to set the ProxyHost too if you would like to have the proxy really used.
      Parameters:
      opts - The FileSystem options.
      Returns:
      proxyPort: the port number or 0 if it is not set
      See Also:
    • getProxyScheme

      Deprecated.
      Gets the proxy-scheme to use for http the connection. You have to set the ProxyHost too if you would like to have the proxy really used.
      Parameters:
      opts - The FileSystem options.
      Returns:
      proxyScheme: the http/https scheme of proxy server
      Since:
      2.7.0
      See Also:
    • getSoTimeout

      Gets the socket timeout.
      Parameters:
      opts - The FileSystemOptions.
      Returns:
      The socket timeout.
    • getSoTimeoutDuration

      Deprecated.
      Gets the socket timeout.
      Parameters:
      opts - The FileSystemOptions.
      Returns:
      The socket timeout.
      Since:
      2.8.0
    • getUrlCharset

      Deprecated.
      Sets the charset used for url encoding.
      Parameters:
      opts - The FileSystem options.
      Returns:
      the charset name.
    • getUserAgent

      Deprecated.
      Gets the user agent string.
      Parameters:
      opts - the file system options to modify
      Returns:
      User provided User-Agent string, otherwise default of: Commons-VFS
    • isHostnameVerificationEnabled

      Deprecated.
      Determines if the hostname should be verified in SSL context.
      Parameters:
      opts - The FileSystemOptions.
      Returns:
      true if the FileSystemOptions indicate that HTTP Keep-Alive is respected.
    • isKeepAlive

      public boolean isKeepAlive(FileSystemOptions opts)
      Deprecated.
      Determines if the FileSystemOptions indicate that HTTP Keep-Alive is respected.
      Parameters:
      opts - The FileSystemOptions.
      Returns:
      true if the FileSystemOptions indicate that HTTP Keep-Alive is respected.
    • isPreemptiveAuth

      public boolean isPreemptiveAuth(FileSystemOptions opts)
      Deprecated.
      Determines if the FileSystemOptions indicate that preemptive authentication is requested.
      Parameters:
      opts - The FileSystemOptions.
      Returns:
      true if preemptiveAuth is requested.
    • setConnectionTimeout

      public void setConnectionTimeout(FileSystemOptions opts, Duration connectionTimeout)
      Deprecated.
      Sets the connection timeout.
      Parameters:
      opts - The FileSystem options.
      connectionTimeout - The connection timeout.
      Since:
      2.8.0
    • setConnectionTimeout

      @Deprecated public void setConnectionTimeout(FileSystemOptions opts, int connectionTimeout)
      Sets the connection timeout.
      Parameters:
      opts - The FileSystem options.
      connectionTimeout - The connection timeout.
    • setCookies

      public void setCookies(FileSystemOptions opts, org.apache.http.cookie.Cookie[] cookies)
      Deprecated.
      The cookies to add to the request.
      Parameters:
      opts - The FileSystem options.
      cookies - An array of Cookies.
    • setFollowRedirect

      public void setFollowRedirect(FileSystemOptions opts, boolean redirect)
      Deprecated.
      Sets whether to follow redirects for the connection.
      Parameters:
      opts - The FileSystem options.
      redirect - true to follow redirects, false not to.
      See Also:
    • setHostnameVerificationEnabled

      public void setHostnameVerificationEnabled(FileSystemOptions opts, boolean hostnameVerificationEnabled)
      Deprecated.
      Sets if the hostname should be verified in SSL context.
      Parameters:
      opts - The FileSystemOptions.
      hostnameVerificationEnabled - whether hostname should be verified
    • setKeepAlive

      public void setKeepAlive(FileSystemOptions opts, boolean keepAlive)
      Deprecated.
      Sets if the FileSystemOptions indicate that HTTP Keep-Alive is respected.
      Parameters:
      opts - The FileSystemOptions.
      keepAlive - whether the FileSystemOptions indicate that HTTP Keep-Alive is respected or not.
    • setKeyStoreFile

      public void setKeyStoreFile(FileSystemOptions opts, String keyStoreFile)
      Deprecated.
      Sets keystore file path for SSL connections.
      Parameters:
      opts - the file system options to modify
      keyStoreFile - keystore file path
    • setKeyStorePass

      public void setKeyStorePass(FileSystemOptions opts, String keyStorePass)
      Deprecated.
      Sets keystore pass phrase for SSL connections.
      Parameters:
      opts - the file system options to modify
      keyStorePass - keystore pass phrase for SSL connections
    • setKeyStoreType

      public void setKeyStoreType(FileSystemOptions opts, String keyStoreType)
      Deprecated.
      Sets keystore type for SSL connections.
      Parameters:
      opts - the file system options to modify
      keyStoreType - keystore type for SSL connections
      Since:
      2.7.0
    • setMaxConnectionsPerHost

      public void setMaxConnectionsPerHost(FileSystemOptions opts, int maxHostConnections)
      Deprecated.
      Sets the maximum number of connections allowed to any host.
      Parameters:
      opts - The FileSystem options.
      maxHostConnections - The maximum number of connections to a host.
    • setMaxTotalConnections

      public void setMaxTotalConnections(FileSystemOptions opts, int maxTotalConnections)
      Deprecated.
      Sets the maximum number of connections allowed.
      Parameters:
      opts - The FileSystem options.
      maxTotalConnections - The maximum number of connections.
    • setPreemptiveAuth

      public void setPreemptiveAuth(FileSystemOptions opts, boolean preemptiveAuth)
      Deprecated.
      Sets the given value for preemptive HTTP authentication (using BASIC) on the given FileSystemOptions object. Defaults to false if not set. It may be appropriate to set to true in cases when the resulting chattiness of the conversation outweighs any architectural desire to use a stronger authentication scheme than basic/preemptive.
      Parameters:
      opts - The FileSystemOptions.
      preemptiveAuth - the desired setting; true=enabled and false=disabled.
    • setProxyAuthenticator

      public void setProxyAuthenticator(FileSystemOptions opts, UserAuthenticator authenticator)
      Deprecated.
      Sets the proxy authenticator where the system should get the credentials from.
      Parameters:
      opts - The FileSystem options.
      authenticator - The UserAuthenticator.
    • setProxyHost

      public void setProxyHost(FileSystemOptions opts, String proxyHost)
      Deprecated.
      Sets the proxy to use for http connection.

      You have to set the ProxyPort too if you would like to have the proxy really used.

      Parameters:
      opts - The FileSystem options.
      proxyHost - the host
      See Also:
    • setProxyPort

      public void setProxyPort(FileSystemOptions opts, int proxyPort)
      Deprecated.
      Sets the proxy-port to use for http connection. You have to set the ProxyHost too if you would like to have the proxy really used.
      Parameters:
      opts - The FileSystem options.
      proxyPort - the port
      See Also:
    • setProxyScheme

      public void setProxyScheme(FileSystemOptions opts, String proxyScheme)
      Deprecated.
      Sets the proxy-scheme to use for http connection. You have to set the ProxyHost too if you would like to have the proxy really used.
      Parameters:
      opts - The FileSystem options.
      proxyScheme - the protocol scheme
      Since:
      2.7.0
      See Also:
    • setSoTimeout

      public void setSoTimeout(FileSystemOptions opts, Duration soTimeout)
      Deprecated.
      Sets the socket timeout.
      Parameters:
      opts - The FileSystem options.
      soTimeout - socket timeout.
    • setSoTimeout

      @Deprecated public void setSoTimeout(FileSystemOptions opts, int soTimeout)
      Sets the socket timeout.
      Parameters:
      opts - The FileSystem options.
      soTimeout - socket timeout.
    • setUrlCharset

      public void setUrlCharset(FileSystemOptions opts, String charset)
      Deprecated.
      Sets the charset used for URL encoding.
      Parameters:
      opts - The FileSystem options.
      charset - the charset name.
    • setUserAgent

      public void setUserAgent(FileSystemOptions opts, String userAgent)
      Deprecated.
      Sets the user agent to attach to the outgoing http methods.
      Parameters:
      opts - the file system options to modify
      userAgent - User Agent String