Examples of changeUserPassword()


Examples of de.sub.goobi.helper.ldap.Ldap.changeUserPassword()

        Helper.setFehlerMeldung(Helper.getTranslation("neuesPasswortNichtGleich"));
      } else {
        try {
          /* wenn alles korrekt, dann jetzt speichern */
          Ldap myLdap = new Ldap();
          myLdap.changeUserPassword(this.myBenutzer, this.passwortAendernAlt, this.passwortAendernNeu1);
          Benutzer temp = new BenutzerDAO().get(this.myBenutzer.getId());
          temp.setPasswortCrypt(this.passwortAendernNeu1);
          new BenutzerDAO().save(temp);
          this.myBenutzer = temp;

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.