| 10 | // ── Interfaces ─────────────────────────────────────────────────────────────── |
| 11 | |
| 12 | @WorkflowInterface |
| 13 | public interface OrderWorkflow { |
| 14 | @WorkflowMethod |
| 15 | String processOrder(String orderId); |
| 16 | |
| 17 | @SignalMethod |
| 18 | void cancelOrder(String reason); |
| 19 | |
| 20 | @QueryMethod |
| 21 | String getStatus(); |
| 22 | } |
| 23 | |
| 24 | @ActivityInterface |
| 25 | public interface PaymentActivity { |
nothing calls this directly
no outgoing calls
no test coverage detected