Package de.sub.goobi.persistence

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

Related Classes of de.sub.goobi.persistence.SchrittDAO

Copyright © 2018 www.massapicom. 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.