@Component @Scope(WebApplicationContext.SCOPE_REQUEST) public class EmployeeDetails implements Serializable { private Employee employee; private int lastYearSalary;
public void setEmployee(Employee employee) { this.employee = employee; }
public Employee getEmployee() { return employee; }
public int getLastYearSalary() { return lastYearSalary; }
public void setLastYearSalary(int lastYearSalary) { this.lastYearSalary = lastYearSalary; } }