- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for hookBefore (0.05 sec)
-
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); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.1K bytes - Viewed (0) -
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.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
* * @param runtime the action runtime context * @return the action response, or null to continue with normal processing */ @Override public ActionResponse hookBefore(final ActionRuntime runtime) { // application may override searchLogSupport = fessConfig.isSearchLog(); favoriteSupport = fessConfig.isUserFavorite(); thumbnailSupport = fessConfig.isThumbnailEnabled();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (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); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (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. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)