Package org.jbpm.persistence.db

Examples of org.jbpm.persistence.db.DbPersistenceService


   * allows users to provide a jdbc connection to be used when the hibernate
   * session is created.
   * @throws ClassCastException if another persistence service is configured then the default.
   */
  public void setConnection(Connection connection) {
    DbPersistenceService persistenceService = (DbPersistenceService) getPersistenceService();
    if (persistenceService==null) return;
    persistenceService.setConnection(connection);
  }
View Full Code Here

TOP

Related Classes of org.jbpm.persistence.db.DbPersistenceService

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.