Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To find out how the data has changed (in an update or delete), you can use the dbVersion API.  Note, this is probably only available in the "pre" hooks.

To veto a hook, throw a HookVeto which is a runtime exception.  The specific hooks which is vetoing will be assigned to the exception, and will be known wherever it is caught.  This HookVeto takes a system name and a friendly description of a reason why it is being vetoed.  The system name can be used to look up a localized error message.  The friendly version can be used for logging or if a localized message doesnt exist.  You can only veto pre and post synchronous hooks.  You cannot veto asynchronous or postCommit hooks.  You also cannot veto lifecycle hooks (e.g. hibernate init).

...