/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.test.webservice.encstyle;

import java.rmi.RemoteException;

/**
 * @author Srobert
 */
public class SampleEndpointImpl implements SampleEndpoint
{

   public String changeSalary(UserType user, Integer amount)
           throws RemoteException
   {
      return "Hello " + user.getFirstName() + " " + user.getLastName() + "! Your salary is: " + amount;
   }

}