import java.io.Serializable; public class EmployeeMap implements Serializable { /** * */ private static final long serialVersionUID = 1L; public int employeeID; public String employeeName; public String employeeCountry; /** * @return the employeeID */ public int getEmployeeID() { return employeeID; } /** * @param employeeID the employeeID to set */ public void setEmployeeID(int employeeID) { this.employeeID = employeeID; } /** * @return the employeeName */ public String getEmployeeName() { return employeeName; } /** * @param employeeName the employeeName to set */ public void setEmployeeName(String employeeName) { this.employeeName = employeeName; } /** * @return the employeeCountry */ public String getEmployeeCountry() { return employeeCountry; } /** * @param employeeCountry the employeeCountry to set */ public void setEmployeeCountry(String employeeCountry) { this.employeeCountry = employeeCountry; } }