1 22 package org.jboss.test.webservice.encstyle; 23 24 import java.rmi.RemoteException ; 25 26 29 public class SampleEndpointImpl implements SampleEndpoint 30 { 31 32 public String changeSalary(UserType user, Integer amount) 33 throws RemoteException  34 { 35 return "Hello " + user.getFirstName() + " " + user.getLastName() + "! Your salary is: " + amount; 36 } 37 38 } 39 | Popular Tags |