alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Apache CXF example source code file (expected_hello_mime)

This example Apache CXF source code file (expected_hello_mime) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Apache CXF tags/keywords

hello, hello, soapbinding, soapbinding, webmethod, webmethod, webparam, webparam, webresult, webservice, xml, xmlseealso

The Apache CXF expected_hello_mime source code


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

Other Apache CXF examples (source code examples)

Here is a short list of links related to this Apache CXF expected_hello_mime source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.