Package test.wsdl.interop4.groupG.mime.rpc

Source Code of test.wsdl.interop4.groupG.mime.rpc.AttachmentsBindingImpl

/**
* 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);
    }

}
TOP

Related Classes of test.wsdl.interop4.groupG.mime.rpc.AttachmentsBindingImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.