Searched defs:octetStream (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DOctetStreamData.java39 private InputStream octetStream; field in class:OctetStreamData
46 * @param octetStream the input stream containing the octets
47 * @throws NullPointerException if <code>octetStream</code> is
50 public OctetStreamData(InputStream octetStream) { argument
51 if (octetStream == null) {
52 throw new NullPointerException("octetStream is null");
54 this.octetStream = octetStream;
60 * @param octetStream the input stream containing the octets
65 * @throws NullPointerException if <code>octetStream</cod
68 OctetStreamData(InputStream octetStream, String uri, String mimeType) argument
[all...]

Completed in 344 milliseconds