Package de.sub.goobi.helper

Examples of de.sub.goobi.helper.PaginatingCriteria.createCriteria()


  private Criteria createCriteriaFromProjectID() {
    Session session = Helper.getHibernateSession();
    PaginatingCriteria crit = new PaginatingCriteria(Prozess.class, session);
    crit.setResultTransformer(CriteriaSpecification.DISTINCT_ROOT_ENTITY);
    crit.createCriteria("projekt", "proj");
    crit.add(Restrictions.eq("proj.id", projectID));
    return crit;
  }

  /**
 
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.