Exemplo n.º 1
0
  public void releaseLocationLocke(String releaseBy) throws BaseException {

    userFunctionsImpl.releaseLocationLocke(this, releaseBy);
  }
Exemplo n.º 2
0
  public void changePassword(
      String oldPassword, String newPassword, String newPassword2, String changeBy)
      throws BaseException {

    userFunctionsImpl.changePassword(this, oldPassword, newPassword, newPassword2, changeBy);
  }
Exemplo n.º 3
0
  public void openUserLock(String openBy) throws BaseException {

    userFunctionsImpl.openUserLock(this, openBy);
  }
Exemplo n.º 4
0
 public void setRawPassword(String rawPassword) {
   this.password = userFunctionsImpl.encodePassword(rawPassword);
 }