public OctetStreamData(InputStream octetStream, String uri, String mimeType)Creates a new OctetStreamData .
if (octetStream == null) {
throw new NullPointerException("octetStream is null");
}
this.octetStream = octetStream;
this.uri = uri;
this.mimeType = mimeType;
|