/* * FooImpl.java * * Created on June 21, 2006, 11:29 AM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package foo; import javax.ejb.Stateless; import javax.jws.WebService; /** * * @author mkuchtiak */ @Stateless @WebService(serviceName = "FooService", portName = "FooPort", endpointInterface = "org.netbeans.xml.examples.targetns.FooPortType", targetNamespace = "http://xml.netbeans.org/examples/targetNS", wsdlLocation = "META-INF/wsdl/FooImpl/FooWrapper.wsdl") public class FooImpl implements org.netbeans.xml.examples.targetns.FooPortType { /** Creates a new instance of FooImpl */ public FooImpl() { } public org.netbeans.xml.examples.targetns.ItemType fooOperation(String id) throws org.netbeans.xml.examples.targetns.FooError { return null; } }