Uses of Interface
fri.util.database.jpa.commons.DbSession

Packages that use DbSession
fri.util.database.jpa.commons   
fri.util.database.jpa.tree   
fri.util.database.jpa.tree.closuretable   
fri.util.database.jpa.tree.examples.closuretable   
fri.util.database.jpa.tree.examples.closuretable.temporal   
fri.util.database.jpa.tree.examples.closuretable.temporal.deletedflag   
fri.util.database.jpa.tree.examples.nestedsets   
fri.util.database.jpa.tree.examples.nestedsets.temporal   
fri.util.database.jpa.tree.hibernatesession   
fri.util.database.jpa.tree.hibernatesession.tests   
fri.util.database.jpa.tree.nestedsets A "Nested Sets" tree implementation for hierarchical structures in a database table. 
fri.util.database.jpa.tree.uniqueconstraints   
 

Uses of DbSession in fri.util.database.jpa.commons
 

Classes in fri.util.database.jpa.commons that implement DbSession
 class DbSessionJpaImpl
          JPA implementation of DbSession.
 

Uses of DbSession in fri.util.database.jpa.tree
 

Fields in fri.util.database.jpa.tree declared as DbSession
protected  DbSession AbstractTreeDao.session
           
 

Methods in fri.util.database.jpa.tree that return DbSession
protected  DbSession AbstractTreeTest.beginDbTransaction(java.lang.String message)
           
protected  DbSession AbstractTreeTest.newDbSession(java.lang.String message)
           
 

Methods in fri.util.database.jpa.tree with parameters of type DbSession
protected abstract  void AbstractTreeTest.checkTreeIntegrity(DbSession session, N root)
           
protected abstract  D AbstractTreeTest.newDao(DbSession session)
           
 

Constructors in fri.util.database.jpa.tree with parameters of type DbSession
AbstractTreeDao(DbSession session, java.lang.String nodeEntityName)
           
 

Uses of DbSession in fri.util.database.jpa.tree.closuretable
 

Methods in fri.util.database.jpa.tree.closuretable with parameters of type DbSession
protected  void TemporalClosureTableTreeTest.checkTreeIntegrity(DbSession session, ClosureTableTreeNode root)
           
protected  void ClosureTableTreeTest.checkTreeIntegrity(DbSession session, ClosureTableTreeNode root)
          Checks that no ClosureTableTreeNode is not connected to TreePath.
protected  TemporalClosureTableTreeDao TemporalClosureTableTreeTest.newDao(DbSession session)
          Overridden to allocate a new TemporalClosureTableTreeDao for this test case.
protected  ClosureTableTreeDao ClosureTableTreeTest.newDao(DbSession session)
          Overridden to allocate a new ClosureTableTreeDao for this test case.
 

Constructors in fri.util.database.jpa.tree.closuretable with parameters of type DbSession
ClosureTableTreeDao(java.lang.Class<? extends ClosureTableTreeNode> treeNodeEntityClass, java.lang.Class<? extends TreePath> treePathsEntityClass, boolean orderIndexMatters, DbSession session)
           
ClosureTableTreeDao(java.lang.Class<? extends ClosureTableTreeNode> treeNodeEntityClass, java.lang.String treeNodeEntity, java.lang.Class<? extends TreePath> treePathEntityClass, java.lang.String treePathEntity, boolean orderIndexMatters, DbSession session)
           
TemporalClosureTableTreeDao(java.lang.Class<? extends ClosureTableTreeNode> treeNodeEntityClass, java.lang.Class<? extends TreePath> treePathsEntityClass, boolean positionMatters, java.lang.String validFromPropertyName, java.lang.String validToPropertyName, DbSession session)
          
TemporalClosureTableTreeDao(java.lang.Class<? extends ClosureTableTreeNode> treeNodeEntityClass, java.lang.String treeNodeEntity, java.lang.Class<? extends TreePath> treePathEntityClass, java.lang.String treePathEntity, boolean positionMatters, java.lang.String validFromPropertyName, java.lang.String validToPropertyName, DbSession session)
          
 

Uses of DbSession in fri.util.database.jpa.tree.examples.closuretable
 

Methods in fri.util.database.jpa.tree.examples.closuretable with parameters of type DbSession
protected  void JpaExample.run(DbSession dbSession)
           
 

Uses of DbSession in fri.util.database.jpa.tree.examples.closuretable.temporal
 

Methods in fri.util.database.jpa.tree.examples.closuretable.temporal with parameters of type DbSession
protected  void JpaExample.run(DbSession dbSession)
           
 

Uses of DbSession in fri.util.database.jpa.tree.examples.closuretable.temporal.deletedflag
 

Methods in fri.util.database.jpa.tree.examples.closuretable.temporal.deletedflag with parameters of type DbSession
protected  void JpaExample.run(DbSession dbSession)
           
 

Uses of DbSession in fri.util.database.jpa.tree.examples.nestedsets
 

Methods in fri.util.database.jpa.tree.examples.nestedsets with parameters of type DbSession
protected  void JpaExample.run(DbSession dbSession)
           
 

Uses of DbSession in fri.util.database.jpa.tree.examples.nestedsets.temporal
 

Methods in fri.util.database.jpa.tree.examples.nestedsets.temporal with parameters of type DbSession
protected  void JpaExample.run(DbSession dbSession)
           
 

Uses of DbSession in fri.util.database.jpa.tree.hibernatesession
 

Classes in fri.util.database.jpa.tree.hibernatesession that implement DbSession
 class DbSessionHibernateImpl
          Hibernate Session (not JPA-compatible!) implementation of DbSession.
 

Uses of DbSession in fri.util.database.jpa.tree.hibernatesession.tests
 

Methods in fri.util.database.jpa.tree.hibernatesession.tests that return DbSession
protected  DbSession TemporalNestedSetsTreeHibernateSessionTest.newDbSession(java.lang.String message)
           
protected  DbSession TemporalClosureTableTreeHibernateSessionTest.newDbSession(java.lang.String message)
           
protected  DbSession NestedSetsTreeHibernateSessionTest.newDbSession(java.lang.String message)
           
protected  DbSession ClosureTableTreeHibernateSessionTest.newDbSession(java.lang.String message)
           
 

Uses of DbSession in fri.util.database.jpa.tree.nestedsets
 

Methods in fri.util.database.jpa.tree.nestedsets with parameters of type DbSession
protected  void TemporalNestedSetsTreeTest.checkTreeIntegrity(DbSession session, NestedSetsTreeNode root)
           
protected  void NestedSetsTreeTest.checkTreeIntegrity(DbSession session, NestedSetsTreeNode root)
          Checks the left and right indexes for continuity.
protected  TemporalNestedSetsTreeDao TemporalNestedSetsTreeTest.newDao(DbSession session)
          Overridden to allocate a new TemporalNestedSetsTreeDao for this test case.
protected  NestedSetsTreeDao NestedSetsTreeTest.newDao(DbSession session)
          Overridden to allocate a new NestedSetsTreeDao for this test case.
 

Constructors in fri.util.database.jpa.tree.nestedsets with parameters of type DbSession
NestedSetsTreeDao(java.lang.Class<? extends NestedSetsTreeNode> entityClass, DbSession session)
           
NestedSetsTreeDao(java.lang.Class<? extends NestedSetsTreeNode> entityClass, java.lang.String entityName, DbSession session)
           
TemporalNestedSetsTreeDao(java.lang.Class<? extends NestedSetsTreeNode> targetEntityClass, java.lang.String validFromPropertyName, java.lang.String validToPropertyName, DbSession session)
          
TemporalNestedSetsTreeDao(java.lang.Class<? extends NestedSetsTreeNode> targetEntityClass, java.lang.String targetEntityName, java.lang.String validFromPropertyName, java.lang.String validToPropertyName, DbSession session)
          
 

Uses of DbSession in fri.util.database.jpa.tree.uniqueconstraints
 

Methods in fri.util.database.jpa.tree.uniqueconstraints that return DbSession
protected  DbSession AbstractUniqueTreeConstraintImpl.getSession()
           
 

Methods in fri.util.database.jpa.tree.uniqueconstraints with parameters of type DbSession
 void UniqueTreeConstraint.setContext(DbSession session, TreeDao<N> dao, java.lang.String nodeEntityName, java.lang.String pathEntityName)
          Called by the DAO to publish context information to this constraint-checker.
 void AbstractUniqueTreeConstraintImpl.setContext(DbSession session, TreeDao<N> dao, java.lang.String nodeEntityName, java.lang.String pathEntityName)