public static interface Provider.ProviderModifyEvents
Modifier and Type | Method and Description |
---|---|
void |
postModify(ProviderAccessor provider,
java.lang.Integer versionNo)
Event interface invoked after the main body of the modify method.
|
void |
preModify(ProviderAccessor provider,
java.lang.Integer versionNo)
Event interface invoked before the main body of the modify method.
|
void preModify(ProviderAccessor provider, java.lang.Integer versionNo) throws curam.util.exception.InformationalException
provider
- The object instance as it was before the main body of the modify
method.versionNo
- The parameter as passed to the modify method.curam.util.exception.InformationalException
- Generic Exception Signature.void postModify(ProviderAccessor provider, java.lang.Integer versionNo) throws curam.util.exception.InformationalException
provider
- The object instance as it was after the main body of the modify
method.versionNo
- The parameter as passed to the modify method.curam.util.exception.InformationalException
- Generic Exception Signature.