package com.fedex.sales.framesmyfaces; import java.util.List; import com.icesoft.faces.component.menubar.MenuItem; public class ContactData { private String contactId; private String firstName; private String lastName; public ContactData(String id, String firstName, String lastName) { this.contactId=id; this.firstName=firstName; this.lastName=lastName; } /** * @return the firstName */ public String getFirstName() { return firstName; } /** * @param firstName the firstName to set */ public void setFirstName(String firstName) { this.firstName = firstName; } /** * @return the lastName */ public String getLastName() { return lastName; } /** * @param lastName the lastName to set */ public void setLastName(String lastName) { this.lastName = lastName; } public String getContactId() { return contactId; } public void setContactId(String contactId) { this.contactId = contactId; } }