Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for godHandPrologue (0.14 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         */
        @Override
        public ActionResponse godHandPrologue(final ActionRuntime runtime) {
            if (!isAccessAllowed()) {
                return asJson(new ApiErrorResponse().message(getMessage(messages -> messages.addErrorsUnauthorizedRequest(GLOBAL)))
                        .status(Status.UNAUTHORIZED)
                        .result());
            }
            return super.godHandPrologue(runtime);
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

                }
            });
            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.
         *
         * @param runtime the action runtime context
         * @return the action response, or null to continue with normal 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/FessAdminAction.java

         * @return the action response, or redirect response if login exception occurs
         */
        @Override
        public ActionResponse godHandPrologue(final ActionRuntime runtime) {
            try {
                return super.godHandPrologue(runtime);
            } catch (final UserRoleLoginException e) {
                return redirect(e.getActionClass());
            }
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.7K 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 godHandPrologue(final ActionRuntime runtime, final Function<ActionRuntime, ActionResponse> func) {
                return func.apply(runtime);
            }
    
            /**
             * Monologue 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