Example #1
0
 /**
  * Get employee by user name
  *
  * @param userName
  * @return Employee Object
  */
 public Employee getEmployeeByUserName(final String userName) {
   return employeeRepository.findByUsername(userName);
 }