Interface AfterDeleteOccurrenceContext
-
- All Superinterfaces:
TableTriggerExecutionContext,TriggerExecutionContext
public interface AfterDeleteOccurrenceContext extends TableTriggerExecutionContext
Provides a context for executing post-record deletion operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DefinitionModegetDefinitionMode()Returns the definition mode of the record that has been deleted.StringgetDeletedRecordXPathExpression()Returns the XPath expression of the record that has been deleted.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
-
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 deleted.
-
getDeletedRecordXPathExpression
String getDeletedRecordXPathExpression()
Returns the XPath expression of the record that has been deleted.
-
-