// EmployeeObject.java
/* This Class represent an employee object on the server side. */

public class EmployeeObject
{
  public int empno;
  public String ename;
  public int salary;

  public EmployeeObject (int empno, String ename, int salary){
    this.empno = empno;
    this.ename = ename;
    this.salary = salary;
  }

  public void raise (float percent) {
    salary += salary * (percent / 100);
  }
}
