FileDocCategorySizeDatePackage
AttachmentsBindingImpl.javaAPI DocApache Axis 1.4820Sat Apr 22 18:57:28 BST 2006test.wsdl.interop4.groupG.mime.rpc

AttachmentsBindingImpl.java

/**
 * AttachmentsBindingImpl.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis WSDL2Java emitter.
 */

package test.wsdl.interop4.groupG.mime.rpc;

import org.apache.axis.attachments.OctetStream;

public class AttachmentsBindingImpl implements test.wsdl.interop4.groupG.mime.rpc.AttachmentsPortType{
    public OctetStream echoAttachment(OctetStream in) throws java.rmi.RemoteException {
        return in;
    }

    public OctetStream[] echoAttachments(OctetStream in[]) throws java.rmi.RemoteException {
        return in;
    }

    public byte[] echoAttachmentAsBase64(OctetStream in) throws java.rmi.RemoteException {
        return in.getBytes();
    }

    public OctetStream echoBase64AsAttachment(byte[] in) throws java.rmi.RemoteException {
        return new OctetStream(in);
    }

}