private List<String> EmployeeListInfo() {

    List<String> employeetList = new ArrayList();
    System.out.println("Performing Employee(s) Search in MMA");
    try {
      employeetList = cabl.findEmployee();
      System.out.println("employeetList Size is:" + employeetList.size());

      if (employeetList.isEmpty()) {
        System.out.println("No employee found.");
      } else {
        return employeetList;
      }
    } catch (Exception ex) {

    }

    return employeetList;
  }