Uses of Class
fri.util.database.jpa.tree.util.TreeActionLocation

Packages that use TreeActionLocation
fri.util.database.jpa.tree   
fri.util.database.jpa.tree.closuretable.uniqueconstraints   
fri.util.database.jpa.tree.nestedsets.uniqueconstraints   
fri.util.database.jpa.tree.uniqueconstraints   
 

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

Methods in fri.util.database.jpa.tree with parameters of type TreeActionLocation
protected  void AbstractTreeDao.checkUniqueness(java.util.List<N> nodes, TreeActionLocation<N> location)
          Utility method that calls the implementation when one was defined.
 

Uses of TreeActionLocation in fri.util.database.jpa.tree.closuretable.uniqueconstraints
 

Methods in fri.util.database.jpa.tree.closuretable.uniqueconstraints with parameters of type TreeActionLocation
 boolean UniqueChildrenTemporalConstraintImpl.checkUniqueConstraint(java.util.List<ClosureTableTreeNode> nodes, TreeActionLocation<ClosureTableTreeNode> location)
          The implementation of this is expected to check the uniqueness of passed node(s).
 boolean UniqueChildrenConstraintImpl.checkUniqueConstraint(java.util.List<ClosureTableTreeNode> nodes, TreeActionLocation<ClosureTableTreeNode> location)
          The implementation of this is expected to check the uniqueness of passed node(s).
 

Uses of TreeActionLocation in fri.util.database.jpa.tree.nestedsets.uniqueconstraints
 

Methods in fri.util.database.jpa.tree.nestedsets.uniqueconstraints with parameters of type TreeActionLocation
 boolean UniqueChildrenTemporalConstraintImpl.checkUniqueConstraint(java.util.List<NestedSetsTreeNode> nodes, TreeActionLocation<NestedSetsTreeNode> location)
          The implementation of this is expected to check the uniqueness of passed node(s).
 boolean UniqueChildrenConstraintImpl.checkUniqueConstraint(java.util.List<NestedSetsTreeNode> nodes, TreeActionLocation<NestedSetsTreeNode> location)
          The implementation of this is expected to check the uniqueness of passed node(s).
 

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

Methods in fri.util.database.jpa.tree.uniqueconstraints with parameters of type TreeActionLocation
protected  void AbstractUniqueTreeConstraintImpl.appendUpdateCondition(N node, java.lang.StringBuilder queryText, java.util.List<java.lang.Object> parameters, java.lang.String tableAlias, TreeActionLocation<N> location)
          When node is persistent and action is neither MOVE nor INSERT, appends a condition saying "node != originalNode", thus avoiding the node to detect itself.
protected  boolean AbstractUniqueTreeConstraintImpl.checkUniqueChildrenConstraint(N node, TreeActionLocation<N> location)
          Checks if passed node would be unique in the children of given location, but can not check roots.
 boolean UniqueTreeConstraint.checkUniqueConstraint(java.util.List<N> candidates, TreeActionLocation<N> location)
          The implementation of this is expected to check the uniqueness of passed node(s).
 boolean AbstractWholeTreeUniqueConstraintImpl.checkUniqueConstraint(java.util.List<N> nodes, TreeActionLocation<N> location)
          The implementation of this is expected to check the uniqueness of passed node(s).
protected  boolean AbstractUniqueTreeConstraintImpl.checkUniqueWholeTreeConstraint(java.util.List<N> nodes, TreeActionLocation<N> location)
          Checks if passed node would be unique within its tree.