Class RidcProxyServiceImpl.ResponseStream
java.lang.Object
oracle.wcc.ridc.adfca.http.internal.RidcProxyServiceImpl.ResponseStream
- Enclosing class:
- RidcProxyServiceImpl
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 Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Closes the stream.Gets the value of a specific header, by name.Gets the collection of all header names available from this stream.Gets the actual InputStream representing the contents of a file.
-
Field Details
-
CONTENT_TYPE_HEADER_NAME
The name of the content type header.- See Also:
-
FALLBACK_CONTENT_TYPE_HEADER_NAME
- See Also:
-
CONTENT_LENGTH_HEADER_NAME
The name of the content length header.- See Also:
-
CONTENT_DISPOSITION_HEADER_NAME
The name of the content disposition header.- See Also:
-
CACHE_CONTROL_HEADER_NAME
The name of the cache control header.- See Also:
-
-
Method Details
-
getHeaderNames
Gets the collection of all header names available from this stream.- Returns:
- the header names
-
getHeader
Gets the value of a specific header, by name.- Parameters:
headerName
- the header name- Returns:
- the value of the header or
null
-
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.
-