|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use UniqueConstraintViolationException | |
---|---|
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.nestedsets | A "Nested Sets" tree implementation for hierarchical structures in a database table. |
Uses of UniqueConstraintViolationException in fri.util.database.jpa.tree |
---|
Methods in fri.util.database.jpa.tree that throw UniqueConstraintViolationException | |
---|---|
N |
TreeDao.addChild(N parent,
N child)
Adds to end of children of given parent. |
N |
TreeDao.addChildAt(N parent,
N child,
int position)
Adds at specified position to children of given parent. |
N |
TreeDao.addChildBefore(N sibling,
N child)
Adds to children before given sibling, sibling is pushed backwards in children list. |
void |
AbstractTreeDao.checkUniqueConstraint(N cloneOfExistingNodeWithNewValues,
N root,
N existingNode)
Checks unique constraint(s) for passed entity before an update of unique properties. |
void |
TreeDao.checkUniqueConstraint(N cloneOfExistingNodeWithNewValues,
N root,
N originalNode)
Checks unique constraint(s) for passed entity before an update of unique properties. |
protected void |
AbstractTreeDao.checkUniqueness(java.util.List<N> nodes,
TreeActionLocation<N> location)
Utility method that calls the implementation when one was defined. |
N |
TreeDao.copy(N node,
N parent,
N copiedNodeTemplate)
Copies the given node to end of children list of parent. |
N |
TreeDao.copyBefore(N node,
N sibling,
N copiedNodeTemplate)
Copies the given node to position of given sibling, pushing sibling backwards in list. |
N |
TreeDao.copyTo(N node,
N parent,
int position,
N copiedNodeTemplate)
Copies the given node to given position in children list of parent. |
N |
TreeDao.copyToBeRoot(N child,
N copiedNodeTemplate)
Copies a tree to be a root. |
N |
TreeDao.createRoot(N root)
Creates a tree root node. |
protected java.io.Serializable |
AbstractTreeTest.createTree()
|
protected java.io.Serializable |
AbstractTreeTest.createTree(java.lang.String rootName)
|
protected java.io.Serializable |
AbstractTreeTest.createTree(java.lang.String rootName,
boolean useLowerCaseNames)
|
void |
TreeDao.move(N node,
N newParent)
Moves the given node to end of children list of parent. |
void |
TreeDao.moveBefore(N node,
N sibling)
Moves the given node to position of given sibling, pushing sibling backwards in list. |
void |
TreeDao.moveTo(N node,
N parent,
int position)
Moves the given node to given position in children list of parent. |
void |
TreeDao.moveToBeRoot(N child)
Moves a sub-tree to be a root. |
protected void |
AbstractTreeTest.setName(N entity,
N root,
java.lang.String name)
Name is unique, so a check is done here explicitly before calling entity.setName() . |
void |
AbstractTreeTest.testBigTree()
Create a big tree. |
void |
TreeDao.update(N entity)
Updates the given persistent object. |
Uses of UniqueConstraintViolationException in fri.util.database.jpa.tree.closuretable |
---|
Methods in fri.util.database.jpa.tree.closuretable that throw UniqueConstraintViolationException | |
---|---|
ClosureTableTreeNode |
ClosureTableTreeDao.addChild(ClosureTableTreeNode parent,
ClosureTableTreeNode child)
Adds to end of children of given parent. |
ClosureTableTreeNode |
ClosureTableTreeDao.addChildAt(ClosureTableTreeNode parent,
ClosureTableTreeNode child,
int position)
Adds at specified position to children of given parent. |
ClosureTableTreeNode |
ClosureTableTreeDao.addChildBefore(ClosureTableTreeNode sibling,
ClosureTableTreeNode child)
Adds to children before given sibling, sibling is pushed backwards in children list. |
ClosureTableTreeNode |
ClosureTableTreeDao.copy(ClosureTableTreeNode node,
ClosureTableTreeNode parent,
ClosureTableTreeNode copiedNodeTemplate)
Copies the given node to end of children list of parent. |
ClosureTableTreeNode |
ClosureTableTreeDao.copyBefore(ClosureTableTreeNode node,
ClosureTableTreeNode sibling,
ClosureTableTreeNode copiedNodeTemplate)
Copies the given node to position of given sibling, pushing sibling backwards in list. |
ClosureTableTreeNode |
ClosureTableTreeDao.copyTo(ClosureTableTreeNode node,
ClosureTableTreeNode parent,
int position,
ClosureTableTreeNode copiedNodeTemplate)
Copies the given node to given position in children list of parent. |
ClosureTableTreeNode |
ClosureTableTreeDao.copyToBeRoot(ClosureTableTreeNode child,
ClosureTableTreeNode copiedNodeTemplate)
Copies a tree to be a root. |
ClosureTableTreeNode |
ClosureTableTreeDao.createRoot(ClosureTableTreeNode root)
Creates a tree root node. |
void |
ClosureTableTreeDao.move(ClosureTableTreeNode node,
ClosureTableTreeNode parent)
Moves the given node to end of children list of parent. |
void |
ClosureTableTreeDao.moveBefore(ClosureTableTreeNode node,
ClosureTableTreeNode sibling)
Moves the given node to position of given sibling, pushing sibling backwards in list. |
void |
ClosureTableTreeDao.moveTo(ClosureTableTreeNode node,
ClosureTableTreeNode parent,
int position)
Moves the given node to given position in children list of parent. |
void |
ClosureTableTreeDao.moveToBeRoot(ClosureTableTreeNode child)
Moves a sub-tree to be a root. |
void |
ClosureTableTreeDao.update(ClosureTableTreeNode node)
Updates the given persistent object. |
Uses of UniqueConstraintViolationException in fri.util.database.jpa.tree.examples.closuretable |
---|
Methods in fri.util.database.jpa.tree.examples.closuretable that throw UniqueConstraintViolationException | |
---|---|
protected void |
JpaExample.run(DbSession dbSession)
|
Uses of UniqueConstraintViolationException in fri.util.database.jpa.tree.examples.closuretable.temporal |
---|
Methods in fri.util.database.jpa.tree.examples.closuretable.temporal that throw UniqueConstraintViolationException | |
---|---|
protected void |
JpaExample.run(DbSession dbSession)
|
Uses of UniqueConstraintViolationException in fri.util.database.jpa.tree.examples.closuretable.temporal.deletedflag |
---|
Methods in fri.util.database.jpa.tree.examples.closuretable.temporal.deletedflag that throw UniqueConstraintViolationException | |
---|---|
protected void |
JpaExample.run(DbSession dbSession)
|
Uses of UniqueConstraintViolationException in fri.util.database.jpa.tree.examples.nestedsets |
---|
Methods in fri.util.database.jpa.tree.examples.nestedsets that throw UniqueConstraintViolationException | |
---|---|
protected void |
JpaExample.run(DbSession dbSession)
|
Uses of UniqueConstraintViolationException in fri.util.database.jpa.tree.examples.nestedsets.temporal |
---|
Methods in fri.util.database.jpa.tree.examples.nestedsets.temporal that throw UniqueConstraintViolationException | |
---|---|
protected void |
JpaExample.run(DbSession dbSession)
|
Uses of UniqueConstraintViolationException in fri.util.database.jpa.tree.nestedsets |
---|
Methods in fri.util.database.jpa.tree.nestedsets that throw UniqueConstraintViolationException | |
---|---|
NestedSetsTreeNode |
NestedSetsTreeDao.addChild(NestedSetsTreeNode parent,
NestedSetsTreeNode child)
Adds to end of children of given parent. |
NestedSetsTreeNode |
NestedSetsTreeDao.addChildAt(NestedSetsTreeNode parent,
NestedSetsTreeNode child,
int position)
Adds at specified position to children of given parent. |
NestedSetsTreeNode |
NestedSetsTreeDao.addChildBefore(NestedSetsTreeNode sibling,
NestedSetsTreeNode child)
Adds to children before given sibling, sibling is pushed backwards in children list. |
NestedSetsTreeNode |
NestedSetsTreeDao.copy(NestedSetsTreeNode node,
NestedSetsTreeNode parent,
NestedSetsTreeNode copiedNodeTemplate)
Copies the given node to end of children list of parent. |
NestedSetsTreeNode |
NestedSetsTreeDao.copyBefore(NestedSetsTreeNode node,
NestedSetsTreeNode sibling,
NestedSetsTreeNode copiedNodeTemplate)
Copies the given node to position of given sibling, pushing sibling backwards in list. |
NestedSetsTreeNode |
NestedSetsTreeDao.copyTo(NestedSetsTreeNode node,
NestedSetsTreeNode parent,
int position,
NestedSetsTreeNode copiedNodeTemplate)
Copies the given node to given position in children list of parent. |
NestedSetsTreeNode |
NestedSetsTreeDao.copyToBeRoot(NestedSetsTreeNode child,
NestedSetsTreeNode copiedNodeTemplate)
Copies a tree to be a root. |
NestedSetsTreeNode |
NestedSetsTreeDao.createRoot(NestedSetsTreeNode root)
Creates a tree root node. |
void |
NestedSetsTreeDao.move(NestedSetsTreeNode node,
NestedSetsTreeNode newParent)
Moves the given node to end of children list of parent. |
void |
NestedSetsTreeDao.moveBefore(NestedSetsTreeNode node,
NestedSetsTreeNode sibling)
Moves the given node to position of given sibling, pushing sibling backwards in list. |
void |
NestedSetsTreeDao.moveTo(NestedSetsTreeNode node,
NestedSetsTreeNode parent,
int position)
Moves the given node to given position in children list of parent. |
void |
NestedSetsTreeDao.moveToBeRoot(NestedSetsTreeNode child)
Moves a sub-tree to be a root. |
void |
NestedSetsTreeDao.update(NestedSetsTreeNode entity)
Updates the given persistent object. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |