- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getActionHook (0.07 seconds)
-
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
if (logger.isDebugEnabled()) { logger.debug("Refreshed user info: result={}", result); } }); return viewHelper.getActionHook().godHandPrologue(runtime, super::godHandPrologue); } /** * Hook method called during action execution. * This method delegates to the view helper's action hook for 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/helper/ViewHelper.java
inlineMimeTypeSet.add(mimeType); } /** * Gets the action hook for custom processing. * * @return the action hook */ public ActionHook getActionHook() { return actionHook; } /** * Sets the action hook for custom processing. * * @param actionHook the action hook to set */
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
viewHelper.addInlineMimeType("text/plain"); assertNotNull(viewHelper.getActionHook()); ViewHelper.ActionHook actionHook = new ViewHelper.ActionHook(); viewHelper.setActionHook(actionHook); assertEquals(actionHook, viewHelper.getActionHook()); viewHelper.setEncodeUrlLink(true); viewHelper.setUrlLinkEncoding("UTF-8");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)