Interface TableTriggerExecutionContext
-
- All Superinterfaces:
TriggerExecutionContext
- All Known Subinterfaces:
AfterCreateOccurrenceContext,AfterDeleteOccurrenceContext,AfterModifyOccurrenceContext,BeforeCreateOccurrenceContext,BeforeDeleteOccurrenceContext,BeforeModifyOccurrenceContext,BeforeTransactionCancelContext,BeforeTransactionCommitContext,NewTransientOccurrenceContext
public interface TableTriggerExecutionContext extends TriggerExecutionContext
Common abstract superclass that provides an execution context for table triggers.- See Also:
TableTrigger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AdaptationHomegetAdaptationHome()Returns the current dataspace.ValueContextgetOccurrenceContext()Returns the record read context.AdaptationTablegetTable()Returns the table targeted by the current operation.booleanisHistoryRestore()Returnstrueif the current operation is a restoration from history.-
Methods inherited from interface com.orchestranetworks.schema.trigger.TriggerExecutionContext
getSession
-
-
-
-
Method Detail
-
getTable
AdaptationTable getTable()
Returns the table targeted by the current operation.
-
getOccurrenceContext
ValueContext getOccurrenceContext()
Returns the record read context.
-
getAdaptationHome
AdaptationHome getAdaptationHome()
Returns the current dataspace.
-
isHistoryRestore
boolean isHistoryRestore()
Returnstrueif the current operation is a restoration from history.
-
-