1 22 package org.jboss.test.ws.jaxws.webserviceref; 23 24 import javax.jws.WebService; 25 26 import org.jboss.logging.Logger; 27 28 34 @WebService(endpointInterface="org.jboss.test.ws.jaxws.webserviceref.TestEndpoint") 35 public class TestEndpointImpl implements TestEndpoint 36 { 37 private static Logger log = Logger.getLogger(TestEndpointImpl.class); 39 40 public String echo(String input) 41 { 42 log.info(input); 43 return input; 44 } 45 } 46 | Popular Tags |