Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. 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)
  3. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
Back to top