Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CacheForm (1.32 sec)

  1. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

        public String lang;
    
        /** Additional fields map for cache operations. */
        public Map<String, String[]> fields = new HashMap<>();
    
        /**
         * Default constructor for CacheForm.
         */
        public CacheForm() {
            super();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java

         * @param form the cache form containing document ID and highlight query
         * @return ActionResponse containing the cached document content or error redirect
         */
        @Execute
        public ActionResponse index(final CacheForm form) {
            validate(form, messages -> {}, () -> asHtml(virtualHost(path_Error_ErrorJsp)));
            if (isLoginRequired()) {
                return redirectToLogin();
            }
    
            Map<String, Object> doc = null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top