1 package org.jboss.test.webservice.jbws720; 2 3 import java.rmi.Remote ; 4 import java.rmi.RemoteException ; 5 6 import org.jboss.logging.Logger; 7 8 public class TestEndpointImpl implements TestEndpoint, Remote  9 { 10 private static Logger log = Logger.getLogger(TestEndpointImpl.class); 11 12 public GetPropertyResponse getProperty(GetProperty getp) throws RemoteException  13 { 14 log.info("getProperty: " + getp); 15 return new GetPropertyResponse(getp.toString()); 16 } 17 } 18 | Popular Tags |