Please take time to read the code disclaimer.

<--Go back to Kent's Projects

<--Go back to project post

package backend;

/**
 *
 * @author Kent
 */
public class Employee {

  private String firstName;
  private String middleInitial;
  private String lastName;
  private String fullName;
  private Account business;
  private Office office;
  private String level;
  private String address;
  private String emailAddress;
  private String hireDate;

  public Employee() {
  }

  /**
   * @return the address
   */
  public String getAddress() {
    return address;
  }

  /**
   * @param address the address to set
   */
  public void setAddress(String address) {
    this.address = address;
  }

  /**
   * @return the emailAddress
   */
  public String getEmailAddress() {
    return emailAddress;
  }

  /**
   * @param emailAddress the emailAddress to set
   */
  public void setEmailAddress(String emailAddress) {
    this.emailAddress = emailAddress;
  }

  /**
   * @return the hireDate
   */
  public String getHireDate() {
    return hireDate;
  }

  /**
   * @param hireDate the hireDate to set
   */
  public void setHireDate(String hireDate) {
    this.hireDate = hireDate;
  }

  /**
   * @return the level
   */
  public String getLevel() {
    return level;
  }

  /**
   * @param level the level to set
   */
  public void setLevel(String level) {
    this.level = level;
  }

  /**
   * @return the firstName
   */
  public String getFirstName() {
    return firstName;
  }

  /**
   * @param firstName the firstName to set
   */
  public void setFirstName(String firstName) {
    this.firstName = firstName;
  }

  /**
   * @return the middleInitial
   */
  public String getMiddleInitial() {
    return middleInitial;
  }

  /**
   * @param middleInitial the middleInitial to set
   */
  public void setMiddleInitial(String middleInitial) {
    this.middleInitial = middleInitial;
  }

  /**
   * @return the lastName
   */
  public String getLastName() {
    return lastName;
  }

  /**
   * @param lastName the lastName to set
   */
  public void setLastName(String lastName) {
    this.lastName = lastName;
  }

  /**
   * @return the fullName
   */
  public String getFullName() {
    return fullName;
  }

  /**
   * @param fullName the fullName to set
   */
  public void setFullName(String fullName) {
    this.fullName = fullName;
  }

  /**
   * @return the business
   */
  public Account getBusiness() {
    return business;
  }

  /**
   * @param business the business to set
   */
  public void setBusiness(Account business) {
    this.business = business;
  }

  /**
   * @return the office
   */
  public Office getOffice() {
    return office;
  }

  /**
   * @param office the office to set
   */
  public void setOffice(Office office) {
    this.office = office;
  }

}