
/*
 * 
 */
 
package org.apache.cxf.w2j.hello_world_mime;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebParam.Mode;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.ParameterStyle;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;

/**
 * This class was generated by Apache CXF 
 * 
 * Generated source version:
 * 
 */
 
 /*
  * 
  */


@WebService(targetNamespace = "http://cxf.apache.org/w2j/hello_world_mime", name = "Hello")
@XmlSeeAlso({org.apache.cxf.mime.ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)

public interface Hello {

/*
 * 
 */

    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
    @WebMethod
    public void hello(
        @WebParam(partName = "body", name = "body", targetNamespace = "http://cxf.apache.org/w2j/hello_world_mime/types")
        java.lang.String body,
        @WebParam(partName = "mime", mode = WebParam.Mode.INOUT, name = "mime", targetNamespace = "")
        javax.xml.ws.Holder<byte[]> mime
    );

/*
 * 
 */

    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
    @WebResult(name = "addressRes", targetNamespace = "http://cxf.apache.org/w2j/hello_world_mime/types", partName = "mime")
    @WebMethod
    public javax.xml.transform.Source address(
        @WebParam(partName = "mime", name = "address", targetNamespace = "http://cxf.apache.org/w2j/hello_world_mime/types")
        org.apache.cxf.mime.Address mime
    );

/*
 * 
 */

    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
    @WebMethod
    public void helloMime(
        @WebParam(partName = "body", name = "body", targetNamespace = "http://cxf.apache.org/w2j/hello_world_mime/types")
        java.lang.String body,
        @WebParam(partName = "mime", mode = WebParam.Mode.INOUT, name = "mime", targetNamespace = "")
        javax.xml.ws.Holder<java.awt.Image> mime
    );
}