1 17 package org.apache.servicemix.samples.wsdl_first; 18 19 import javax.jws.WebService; 20 import org.apache.servicemix.samples.wsdl_first.types.GetPersonResponse; 21 22 @WebService(serviceName = "PersonService", targetNamespace = "http://servicemix.apache.org/samples/wsdl-first", endpointInterface = "org.apache.servicemix.samples.wsdl_first.Person") 23 public class PersonServiceImpl 24 implements Person 25 { 26 27 28 public GetPersonResponse getPerson(org.apache.servicemix.samples.wsdl_first.types.GetPerson GetPerson) 29 throws UnknownPersonFault 30 { 31 throw new UnsupportedOperationException (); 32 } 33 34 } 35 | Popular Tags |