package org.jboss.test.webservice.encstyle;
import java.rmi.RemoteException;
public class SampleEndpointImplDOC implements SampleEndpointDOC
{
public SampleEndpoint_changeSalary_ResponseStruct changeSalary(SampleEndpoint_changeSalary_RequestStruct in) throws RemoteException
{
UserType user = in.getUserType_1();
Integer amount = in.getInteger_2();
String retstr = "Hello " + user.getFirstName() + " " + user.getLastName() + "! Your salary is: " + amount;
return new SampleEndpoint_changeSalary_ResponseStruct(retstr);
}
}