1 package javax.xml.bind.attachment; 2 3 import javax.activation.DataHandler ; 4 5 42 public abstract class AttachmentUnmarshaller { 43 90 public abstract DataHandler getAttachmentAsDataHandler(String cid); 91 92 103 public abstract byte[] getAttachmentAsByteArray(String cid); 104 105 114 public boolean isXOPPackage() { return false; } 115 } 116 117 118 | Popular Tags |