-
Feature Request
-
Resolution: Obsolete
-
Major
-
None
A LifecycleClass implementation should be able to register multiple methods with the same Lifecycele annotation. For example, this would allow more than one compensation method to be triggered.
Example:
@ServiceRequest() public void submitOrder(...) { ... } @Compensate public void cancelOrder() { //Cancel the order } @Compensate public void notifyAdmin() { //Notify an admin that an order was cancelled. }