Examples of SchrittDAO


Examples of de.sub.goobi.persistence.SchrittDAO

   * @return Anzahl der Benutzer
   * @throws DAOException
   */
  public Long getAnzahlSchritte() {
    try {
      return new SchrittDAO().count("from Schritt");
    } catch (DAOException e) {
      myLogger.error("Hibernate error", e);
      Helper.setFehlerMeldung("fehlerBeimEinlesen", e);
      return Long.valueOf(-1);
    }
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.