Interface AfterModifyOccurrenceContext
-
- All Superinterfaces:
TableTriggerExecutionContext,TriggerExecutionContext
public interface AfterModifyOccurrenceContext extends TableTriggerExecutionContext
Provides a context for executing post-record modification operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AdaptationgetAdaptationOccurrence()Returns the record that has been modified.ValueChangesgetChanges()Returns the changes that have modified the current record.DefinitionModegetDefinitionMode()Returns the definition mode of the record that has been modified.ProcedureContextgetProcedureContext()Returns the current procedure context.-
Methods inherited from interface com.orchestranetworks.schema.trigger.TableTriggerExecutionContext
getAdaptationHome, getOccurrenceContext, getTable, isHistoryRestore
-
Methods inherited from interface com.orchestranetworks.schema.trigger.TriggerExecutionContext
getSession
-
-
-
-
Method Detail
-
getAdaptationOccurrence
Adaptation getAdaptationOccurrence()
Returns the record that has been modified.
-
getChanges
ValueChanges getChanges()
Returns the changes that have modified the current record.- Since:
- 5.2.5
- See Also:
BeforeModifyOccurrenceContext.getChanges()
-
getProcedureContext
ProcedureContext getProcedureContext()
Returns the current procedure context. This context provides the opportunity to perform additional updates in the current dataspace.
-
getDefinitionMode
DefinitionMode getDefinitionMode()
Returns the definition mode of the record that has been modified.
-
-