1 22 package org.jboss.test.webservice.jbws484; 23 24 import java.rmi.RemoteException ; 25 26 import org.jboss.logging.Logger; 27 28 public class TestServiceBean implements TestService_PortType 29 { 30 private static Logger log = Logger.getLogger(TestServiceBean.class); 31 32 public int testMethod(String aFirstParam, String secondParam) throws RemoteException  33 { 34 log.info("testMethod: " + aFirstParam + "," + secondParam); 35 return (aFirstParam + secondParam).length(); 36 } 37 } 38 | Popular Tags |