1 22 package org.jboss.test.webservice.ws4eesimple; 23 24 import java.io.Serializable ; 25 import java.rmi.RemoteException ; 26 27 public class HelloJavaBean implements HelloWs, Serializable  28 { 29 static final long serialVersionUID = 3390274030150267564L; 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 |