1 22 package org.jboss.test.webservice.jbas897; 23 24 import java.io.Serializable ; 25 import java.rmi.RemoteException ; 26 27 public class HelloJavaBean implements Hello, Serializable  28 { 29 static final long serialVersionUID = -1708064713761203215L; 30 31 public HelloJavaBean() 32 { 33 } 34 35 public String sayHello(String input) throws RemoteException  36 { 37 return "'" + input + "' to you too!"; 38 } 39 40 } 41 | Popular Tags |