Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hookFinally (0.17 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

         *
         * @param runtime the action runtime context
         */
        @Override
        public void hookFinally(final ActionRuntime runtime) {
            viewHelper.getActionHook().hookFinally(runtime, super::hookFinally);
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

                actionHook.godHandEpilogue(null, runtime -> {});
                assertNull(actionHook.hookBefore(null, runtime -> null));
                actionHook.hookFinally(null, runtime -> {});
                assertTrue(true);
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_getCachedFacetResponse() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
Back to top