- java.lang.Object
- 
- javax.xml.crypto.OctetStreamData
 
- 
- 
Constructor SummaryConstructors Constructor Description OctetStreamData(InputStream octetStream)Creates a newOctetStreamData.OctetStreamData(InputStream octetStream, String uri, String mimeType)Creates a newOctetStreamData.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetMimeType()Returns the MIME type associated with the data object represented by thisOctetStreamData.InputStreamgetOctetStream()Returns the input stream of thisOctetStreamData.StringgetURI()Returns the URI String identifying the data object represented by thisOctetStreamData.
 
- 
- 
- 
Constructor Detail- 
OctetStreamDatapublic OctetStreamData(InputStream octetStream) Creates a newOctetStreamData.- Parameters:
- octetStream- the input stream containing the octets
- Throws:
- NullPointerException- if- octetStreamis- null
 
 - 
OctetStreamDatapublic OctetStreamData(InputStream octetStream, String uri, String mimeType) Creates a newOctetStreamData.- Parameters:
- octetStream- the input stream containing the octets
- uri- the URI String identifying the data object (may be- null)
- mimeType- the MIME type associated with the data object (may be- null)
- Throws:
- NullPointerException- if- octetStreamis- null
 
 
- 
 - 
Method Detail- 
getOctetStreampublic InputStream getOctetStream() Returns the input stream of thisOctetStreamData.- Returns:
- the input stream of this OctetStreamData.
 
 - 
getURIpublic String getURI() Returns the URI String identifying the data object represented by thisOctetStreamData.- Returns:
- the URI String or nullif not applicable
 
 - 
getMimeTypepublic String getMimeType() Returns the MIME type associated with the data object represented by thisOctetStreamData.- Returns:
- the MIME type or nullif not applicable
 
 
- 
 
-