Perform an action on this request. @param actionCode the action code @param param the action parameter
(ActionCode actionCode, Object param)
| 796 | * @param param the action parameter |
| 797 | */ |
| 798 | public void action(ActionCode actionCode, Object param) { |
| 799 | if (hook != null) { |
| 800 | hook.action(actionCode, Objects.requireNonNullElse(param, this)); |
| 801 | } |
| 802 | } |
| 803 | |
| 804 | |
| 805 | // -------------------- Cookies -------------------- |
no test coverage detected