1 /**2 * AttachmentsBindingImpl.java3 *4 * This file was auto-generated from WSDL5 * 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 {12 return in;13 }14 15 public org.apache.axis.attachments.OctetStream[] echoAttachments(org.apache.axis.attachments.OctetStream item[]) throws java.rmi.RemoteException {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 {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 {24 return new org.apache.axis.attachments.OctetStream(in.get_value());25 }26 }27