- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for hookBefore (0.03 sec)
-
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)