264265266267268269270271272273
/** * Sets the content for this entry */ public Content setContent(InputStream in) { InputStreamDataSource ds = new InputStreamDataSource(in); DataHandler dh = new DataHandler(ds); Content content = setContent(dh); return content; }
274275276277278279280281282
/** * Sets the content for this entry */ public Content setContent(InputStream in, String mediatype){ InputStreamDataSource ds = new InputStreamDataSource(in, mediatype); DataHandler dh = new DataHandler(ds); return setContent(dh, mediatype); }