KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > interop4 > groupG > mime > doc > 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.doc;
9
10 public class AttachmentsBindingImpl implements test.wsdl.interop4.groupG.mime.doc.AttachmentsPortType{
11     public org.apache.axis.attachments.OctetStream echoAttachment(org.apache.axis.attachments.OctetStream in) throws java.rmi.RemoteException JavaDoc {
12         return in;
13     }
14
15     public org.apache.axis.attachments.OctetStream[] echoAttachments(org.apache.axis.attachments.OctetStream item[]) throws java.rmi.RemoteException JavaDoc {
16         return item;
17     }
18
19     public test.wsdl.interop4.groupG.mime.doc.xsd.Binary echoAttachmentAsBase64(org.apache.axis.attachments.OctetStream in) throws java.rmi.RemoteException JavaDoc {
20         return new test.wsdl.interop4.groupG.mime.doc.xsd.Binary(in.getBytes());
21     }
22
23     public org.apache.axis.attachments.OctetStream echoBase64AsAttachment(test.wsdl.interop4.groupG.mime.doc.xsd.Binary in) throws java.rmi.RemoteException JavaDoc {
24         return new org.apache.axis.attachments.OctetStream(in.get_value());
25     }
26 }
27
Popular Tags