1 22 package org.jboss.test.webservice.attachment; 23 24 import java.rmi.Remote ; 25 import java.rmi.RemoteException ; 26 27 import javax.activation.DataHandler ; 28 import javax.xml.transform.Source ; 29 30 43 public interface Attachment extends Remote 44 { 45 46 String sendMimeImageGIF(String message, Object mimepart) throws RemoteException ; 47 48 49 String sendMimeImageJPEG(String message, Object mimepart) throws RemoteException ; 50 51 52 String sendMimeTextPlain(String message, Object mimepart) throws RemoteException ; 53 54 55 String sendMimeMultipart(String message, Object mimepart) throws RemoteException ; 56 57 58 String sendMimeTextXML(String message, Object mimepart) throws RemoteException ; 59 60 61 String sendMimeApplicationXML(String message, Object mimepart) throws RemoteException ; 62 63 64 Object echoMimeImageGIF(Object mimepart) throws RemoteException ; 65 66 67 Object echoMimeImageJPEG(Object mimepart) throws RemoteException ; 68 69 70 Object echoMimeTextPlain(Object mimepart) throws RemoteException ; 71 72 73 Object echoMimeMultipart(Object mimepart) throws RemoteException ; 74 75 76 Object echoMimeTextXML(Object mimepart) throws RemoteException ; 77 78 79 Source echoMimeApplicationXML(Source mimepart) throws RemoteException ; 80 81 DataHandler echoHandler(DataHandler mimepart) throws RemoteException ; 82 } 83 | Popular Tags |