Uses of Interface
org.hibernate.persister.collection.mutation.CollectionOperationCoordinator
-
Packages that use CollectionOperationCoordinator Package Description org.hibernate.persister.collection.mutation Defines support for performing mutation operations against collections. -
-
Uses of CollectionOperationCoordinator in org.hibernate.persister.collection.mutation
Subinterfaces of CollectionOperationCoordinator in org.hibernate.persister.collection.mutation Modifier and Type Interface Description interface
DeleteRowsCoordinator
Coordinates the deletion of entries removed from the collection - For collections with a collection-table, deletes rows from the collection table.interface
InsertRowsCoordinator
Coordinates the logical insertion of collection entries which are not yet persistent.interface
RemoveCoordinator
Removes the collection: For collections with a collection-table, this will execute a DELETE based on the collection-key For one-to-many collections, this executes an UPDATE to unset the collection-key on the association tableinterface
UpdateRowsCoordinator
Classes in org.hibernate.persister.collection.mutation that implement CollectionOperationCoordinator Modifier and Type Class Description class
AbstractUpdateRowsCoordinator
class
DeleteRowsCoordinatorNoOp
DeleteRowsCoordinator implementation for cases where deletion is not enabledclass
DeleteRowsCoordinatorStandard
class
InsertRowsCoordinatorNoOp
class
InsertRowsCoordinatorStandard
class
RemoveCoordinatorNoOp
class
RemoveCoordinatorStandard
Handles complete removal of a collection by its keyclass
UpdateRowsCoordinatorNoOp
class
UpdateRowsCoordinatorOneToMany
class
UpdateRowsCoordinatorStandard
UpdateRowsCoordinator implementation for cases with a separate collection table
-