Class IdcHttpClientConfig

java.lang.Object
oracle.stellent.ridc.IdcClientConfig
oracle.stellent.ridc.protocol.http.IdcHttpClientConfig

@Exported public class IdcHttpClientConfig extends IdcClientConfig
  • Field Details

  • Constructor Details

    • IdcHttpClientConfig

      public IdcHttpClientConfig()
  • Method Details

    • getHttpLibrary

      public RIDCHttpConstants.HttpLibrary getHttpLibrary()
    • setHttpLibrary

      public void setHttpLibrary(RIDCHttpConstants.HttpLibrary httpLibrary)
    • getChunkSize

      public int getChunkSize()
      Returns:
      suggested chunk size to utilize for HTTP chunked transfers
    • setChunkSize

      public void setChunkSize(int size)
      Parameters:
      size - number of bytes to utilize as buffer for chunked transfer for supported HTTP implementations. Value should be a multiple of 16k, e.g. 16384, 32768, 65536 etc
    • isForcedChunkingForLongRequests

      public boolean isForcedChunkingForLongRequests()
      Returns:
      true to force chunked transfer encoding when content length of the request exceeds Integer.MAX_VALUE (2 GB). false is the default meaning 'long' type fixed length streaming will be leveraged if available
    • setForcedChunkingForLongRequests

      public void setForcedChunkingForLongRequests(boolean forcedChunking)
    • getOutputStreamBufferSize

      public int getOutputStreamBufferSize()
      Returns:
      suggested buffer size to utilize for HTTP output stream
    • setOutputStreamBufferSize

      public void setOutputStreamBufferSize(int size)
      Parameters:
      size - number of bytes to utilize as buffer for HTTP output stream. Value should be a multiple of 16k, e.g. 32768, 65536 etc
    • isUseSystemProxy

      public boolean isUseSystemProxy()
      Returns:
      true to use the system proxy settings unless specifically overridden; false to just look in local config
    • setUseSystemProxy

      public void setUseSystemProxy(boolean useSystemProxy)
    • getProxyHost

      public String getProxyHost()
    • setProxyHost

      public void setProxyHost(String proxyHost)
    • getProxyPort

      public int getProxyPort()
    • setProxyPort

      public void setProxyPort(int port)
    • getNonProxyHosts

      public String getNonProxyHosts()
    • setNonProxyHosts

      public void setNonProxyHosts(String nonProxyHosts)
    • getProxyUsername

      public String getProxyUsername()
    • setProxyUsername

      public void setProxyUsername(String proxyUsername)
    • getProxyPassword

      public String getProxyPassword()
    • setProxyPassword

      public void setProxyPassword(String proxyPassword)
    • setProxyRealm

      public void setProxyRealm(String proxyRealm)
    • getProxyRealm

      public String getProxyRealm()
    • getContentType

      public String getContentType()
    • setContentType

      public void setContentType(String contentType)
    • getHostName

      public String getHostName()
    • getPort

      public int getPort()
    • getScheme

      public String getScheme()
    • setIsAdminServer

      public void setIsAdminServer(boolean isAdminServer)
      Parameters:
      isAdminServer - set to true if your url points to an admin server
    • isAdminServer

      public boolean isAdminServer()
      Returns:
      true if set to contact admin server
    • setPingService

      public void setPingService(String pingService)
      Parameters:
      pingService - set to service call used to detect Form login. By default PING_SERVER or GET_ROOT_IDC_ADMIN_PAGE (admin servers)
    • getPingService

      public String getPingService()
      Returns:
      service string used to detect Form login, ie "?IdcService=PING_SERVER&IsJava=1"
    • setSecurityRealm

      public void setSecurityRealm(String securityRealm)
      Specify security realm for use with basic authentication using Oracle HTTPClient
      Parameters:
      securityRealm - security realm to which the credentials apply
    • getSecurityRealm

      public String getSecurityRealm()
      Return the security realm to utilize for use with basic authentication using Oracle HTTPClient
      Returns:
      the security realm to leverage
    • getConnectionStringPostAuth

      public String getConnectionStringPostAuth()
    • setConnectionStringPostAuth

      public void setConnectionStringPostAuth(String connectionString)