Package org.apache.cayenne.access
Interface DataContextDelegate
public interface DataContextDelegate
Defines API for a DataContext "delegate" - an object that is temporarily passed control
by DataContext at some critical points in the normal flow of execution. A delegate thus
can modify the flow, abort an operation, modify the objects participating in an
operation, or perform any other tasks it deems necessary. DataContextDelegate is shared
by DataContext and its ObjectStore.
- Since:
- 1.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
finishedMergeChanges
(DataObject object) Called after a successful merging of external changes to an object.void
finishedProcessDelete
(DataObject object) Called after a successful processing of externally deleted object.boolean
shouldMergeChanges
(DataObject object, DataRow snapshotInStore) Invoked by parent DataContext whenever an object change is detected.boolean
shouldProcessDelete
(DataObject object) Invoked by ObjectStore whenever it is detected that a database row was deleted for object.willPerformGenericQuery
(DataContext context, Query query) Invoked before a Query is executed via DataContext.performGenericQuery.willPerformQuery
(DataContext context, Query query) Invoked before a Query is executed via DataContext.performQuery.
-
Method Details
-
willPerformQuery
Invoked before a Query is executed via DataContext.performQuery. The delegate may substitute the Query with a different one or may return null to discard the query.- Since:
- 1.2
-
willPerformGenericQuery
Invoked before a Query is executed via DataContext.performGenericQuery. The delegate may substitute the Query with a different one or may return null to discard the query.- Since:
- 1.2
-
shouldMergeChanges
Invoked by parent DataContext whenever an object change is detected. This can be a change to the object snapshot, or a modification of an "independent" relationship not resulting in a snapshot change. In the later case snapshot argument may be null. If a delegate returnstrue
, ObjectStore will attempt to merge the changes into an object. -
finishedMergeChanges
Called after a successful merging of external changes to an object. If previosly a delegate returnedfalse
fromshouldMergeChanges(DataObject, DataRow)
, this method is not invoked, since changes were not merged. -
shouldProcessDelete
Invoked by ObjectStore whenever it is detected that a database row was deleted for object. If a delegate returnstrue
, ObjectStore will change MODIFIED objects to NEW (resulting in recreating the deleted record on next commit) and all other objects - to TRANSIENT. To block this behavior, delegate should returnfalse
, and possibly do its own processing.- Parameters:
object
- DataObject that was deleted externally and is still present in the ObjectStore associated with the delegate.
-
finishedProcessDelete
Called after a successful processing of externally deleted object. If previosly a delegate returnedfalse
fromshouldProcessDelete(DataObject)
, this method is not invoked, since no processing was done.
-