KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > interop4 > groupG > mime > rpc > AttachmentsBindingImpl


1 /**
2  * AttachmentsBindingImpl.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis WSDL2Java emitter.
6  */

7
8 package test.wsdl.interop4.groupG.mime.rpc;
9
10 import org.apache.axis.attachments.OctetStream;
11
12 public class AttachmentsBindingImpl implements test.wsdl.interop4.groupG.mime.rpc.AttachmentsPortType{
13     public OctetStream echoAttachment(OctetStream in) throws java.rmi.RemoteException JavaDoc {
14         return in;
15     }
16
17     public OctetStream[] echoAttachments(OctetStream in[]) throws java.rmi.RemoteException JavaDoc {
18         return in;
19     }
20
21     public byte[] echoAttachmentAsBase64(OctetStream in) throws java.rmi.RemoteException JavaDoc {
22         return in.getBytes();
23     }
24
25     public OctetStream echoBase64AsAttachment(byte[] in) throws java.rmi.RemoteException JavaDoc {
26         return new OctetStream(in);
27     }
28
29 }
30
Popular Tags