Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hookBefore (0.12 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);
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        }
    
        // #app_customize you can customize the action hook
        @Override
        public ActionResponse hookBefore(final ActionRuntime runtime) { // application may override
            return viewHelper.getActionHook().hookBefore(runtime, super::hookBefore);
        }
    
        @Override
        public void hookFinally(final ActionRuntime runtime) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

        protected HttpServletRequest request;
    
        protected boolean searchLogSupport;
    
        protected boolean favoriteSupport;
    
        protected boolean thumbnailSupport;
    
        @Override
        public ActionResponse hookBefore(final ActionRuntime runtime) { // application may override
            searchLogSupport = fessConfig.isSearchLog();
            favoriteSupport = fessConfig.isUserFavorite();
            thumbnailSupport = fessConfig.isThumbnailEnabled();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
    
            public void godHandEpilogue(final ActionRuntime runtime, final Consumer<ActionRuntime> consumer) {
                consumer.accept(runtime);
            }
    
            public ActionResponse hookBefore(final ActionRuntime runtime, final Function<ActionRuntime, ActionResponse> func) {
                return func.apply(runtime);
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top