All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.servicemix.samples.wsdl_first.PersonServiceImpl Maven / Gradle / Ivy

The newest version!

package org.apache.servicemix.samples.wsdl_first;

import javax.jws.WebService;
import javax.xml.ws.Holder;

@WebService(serviceName = "PersonService", targetNamespace = "http://servicemix.apache.org/samples/wsdl-first", endpointInterface = "org.apache.servicemix.samples.wsdl_first.Person")
public class PersonServiceImpl
    implements Person
{


    public String getPerson(String personId, Holder ssn, Holder name)
        throws UnknownPersonFault
    {
        throw new UnsupportedOperationException();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy