package com.bahadirakin.helloworld; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.xml.bind.annotation.XmlSeeAlso; /** * This class was generated by Apache CXF 2.7.7 * 2013-10-26T21:47:31.455+03:00 * Generated source version: 2.7.7 * */ @WebService(targetNamespace = "http://helloworld.bahadirakin.com/", name = "HelloWorldService") @XmlSeeAlso({ObjectFactory.class}) @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) public interface HelloWorldService { @WebResult(name = "sayHelloResponse", targetNamespace = "http://helloworld.bahadirakin.com/", partName = "sayHelloResponse") @WebMethod public java.lang.String sayHello( @WebParam(partName = "helloRequest", name = "helloRequest", targetNamespace = "http://helloworld.bahadirakin.com/") HelloRequest helloRequest ); }