Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for godHandPrologue (0.06 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: Thu Sep 04 12:52:25 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/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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K 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 godHandPrologue(final ActionRuntime runtime, final Function<ActionRuntime, ActionResponse> func) {
                return func.apply(runtime);
            }
    
            /**
             * Monologue 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