コード例 #1
0
  public String updatePassword(String password, Integer empId) {

    return loginDao.updatePassword(password, empId);
  }
コード例 #2
0
  public void updateLogin(long lastLoginTime, Integer employeeId) throws SQLException, IOException {

    loginDao.updateLogin(lastLoginTime, employeeId);
  }
コード例 #3
0
  public void updateLogout(Integer employeeId) throws SQLException, IOException {

    loginDao.updateLogout(employeeId);
  }
コード例 #4
0
 public EDBUser searchUser(String name) throws IOException, SQLException {
   return loginDao.searchuser(name);
 }