Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hookBefore (0.04 sec)

  1. 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: 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

         * @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: 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/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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  4. 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: 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