- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for hookBefore (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
* @return the action response, or null to continue with normal processing */ @Override public ActionResponse hookBefore(final ActionRuntime runtime) { // application may override return viewHelper.getActionHook().hookBefore(runtime, super::hookBefore); } /** * Hook method called in the finally block of action processing.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 15K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
*/ @Override public ActionResponse hookBefore(final ActionRuntime runtime) { final String requestPath = runtime.getRequestPath(); final String executeName = runtime.getExecuteMethod().getName(); activityHelper.access(getUserBean(), requestPath, executeName); return super.hookBefore(runtime); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 13:57:12 GMT 2026 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* * @param runtime the action runtime * @param func the function to execute * @return the action response */ public ActionResponse hookBefore(final ActionRuntime runtime, final Function<ActionRuntime, ActionResponse> func) { return func.apply(runtime); } /** * Finally hook for action processing. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 52.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
assertNull(actionHook.godHandMonologue(null, runtime -> null)); actionHook.godHandEpilogue(null, runtime -> {}); assertNull(actionHook.hookBefore(null, runtime -> null)); actionHook.hookFinally(null, runtime -> {}); assertTrue(true); } catch (Exception e) { assertTrue(true); } } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0)