Class RidcProxyServiceImpl.ResponseStream

java.lang.Object
oracle.wcc.ridc.adfca.http.internal.RidcProxyServiceImpl.ResponseStream
Enclosing class:
RidcProxyServiceImpl

public static final class RidcProxyServiceImpl.ResponseStream extends Object
Represents a content stream response from the WCC server. In addition to the stream, various response headers are available. A try/finally pattern should be used for closing this stream by calling its close() method.
  • Field Details

    • CONTENT_TYPE_HEADER_NAME

      public static final String CONTENT_TYPE_HEADER_NAME
      The name of the content type header.
      See Also:
    • FALLBACK_CONTENT_TYPE_HEADER_NAME

      public static final String FALLBACK_CONTENT_TYPE_HEADER_NAME
      See Also:
    • CONTENT_LENGTH_HEADER_NAME

      public static final String CONTENT_LENGTH_HEADER_NAME
      The name of the content length header.
      See Also:
    • CONTENT_DISPOSITION_HEADER_NAME

      public static final String CONTENT_DISPOSITION_HEADER_NAME
      The name of the content disposition header.
      See Also:
    • CACHE_CONTROL_HEADER_NAME

      public static final String CACHE_CONTROL_HEADER_NAME
      The name of the cache control header.
      See Also:
  • Method Details

    • getHeaderNames

      public Collection<String> getHeaderNames()
      Gets the collection of all header names available from this stream.
      Returns:
      the header names
    • getHeader

      public String getHeader(String headerName)
      Gets the value of a specific header, by name.
      Parameters:
      headerName - the header name
      Returns:
      the value of the header or null
    • getInputStream

      public InputStream getInputStream()
      Gets the actual InputStream representing the contents of a file.
      Returns:
      the InputStream
    • close

      public void close()
      Closes the stream. This method must always be called in a try/finally pattern to prevent resource leaks.