Package org.apache.cxf.databinding.xmlbeans.test

Examples of org.apache.cxf.databinding.xmlbeans.test.Address


public class TestService {
    @WebMethod
    @WebResult(name = "return")
    public Address echoAddress(@WebParam(name = "ad")Address ad) {
       
        Address ret = Address.Factory.newInstance();
        ret.setAddressLine1(ad.getAddressLine1());
        ret.setAddressLine2(ad.getAddressLine2());
        ret.setCity(ad.getCity());
        ret.setCountry(ad.getCountry());
        ret.setZIPPostalCode(ad.getZIPPostalCode());
        ret.setStateProvinceRegion(ad.getStateProvinceRegion());
        return ret;
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.databinding.xmlbeans.test.Address

Copyright © 2018 www.massapicom. 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.