47484950515253545556
public User findByName(String username) throws ServiceException { User user; try { user = this.userDao.findByName(username); } catch (DaoException e) { throw new ServiceException(e); } return user; }