Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hookFinally (0.05 sec)

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

         * This method performs cleanup operations by calling the parent hook.
         * </p>
         *
         * @param runtime the action runtime context
         */
        @Override
        public void hookFinally(final ActionRuntime runtime) {
            super.hookFinally(runtime);
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 15K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            /**
             * Finally hook for action processing.
             *
             * @param runtime the action runtime
             * @param consumer the consumer to execute
             */
            public void hookFinally(final ActionRuntime runtime, final Consumer<ActionRuntime> consumer) {
                consumer.accept(runtime);
            }
        }
    
        /**
         * Represents a text fragment for URL-based text highlighting.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 52.6K bytes
    - Viewed (0)
Back to top