Lines Matching defs:content

70                 String hndlrStr = ";;x-java-content-handler=";
197 log.severe("SAAJ0572.soap.no.content.for.attachment");
198 throw new SOAPExceptionImpl("No data handler/content associated with this attachment");
383 public void setBase64Content(InputStream content, String contentType)
393 decoded = MimeUtility.decode(content, "base64");
434 log.severe("SAAJ0572.soap.no.content.for.attachment");
435 throw new SOAPExceptionImpl("No data handler/content associated with this attachment");
470 log.log(Level.SEVERE,"SAAJ0572.soap.no.content.for.attachment");
471 throw new SOAPExceptionImpl("No data handler/content associated with this attachment");
475 public void setRawContent(InputStream content, String contentType)
489 bos.write(content);
497 content.close();
505 public void setRawContentBytes(byte[] content, String contentType)
507 if (content == null) {
508 throw new SOAPExceptionImpl("Null content passed to setRawContentBytes");
514 rawContent = new MimeBodyPart(hdrs, content, content.length);
523 byte[] content, int off, int len, String contentType)
529 if (content == null) {
530 throw new SOAPExceptionImpl("Null content passed to setRawContentBytes");
536 rawContent = new MimeBodyPart(hdrs, content, off, len);
564 log.severe("SAAJ0572.soap.no.content.for.attachment");
565 throw new SOAPExceptionImpl("No data handler/content associated with this attachment");
597 log.severe("SAAJ0572.soap.no.content.for.attachment");
598 throw new SOAPExceptionImpl("No data handler/content associated with this attachment");