Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for storeQueryId (0.05 sec)

  1. src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

            Map<String, Object> doc1 = new HashMap<>();
            doc1.put("docId", "doc1");
            doc1.put("title", "Test Document 1");
            documentItems.add(doc1);
    
            try {
                userInfoHelper.storeQueryId("query1", documentItems);
                assertTrue(true);
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_storeQueryId_emptyDocuments() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

         *
         * @param queryId the unique identifier for the search query
         * @param documentItems the list of document maps containing search results
         */
        public void storeQueryId(final String queryId, final List<Map<String, Object>> documentItems) {
            LaRequestUtil.getOptionalRequest().map(req -> req.getSession(false)).ifPresent(session -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                                params.getPageSize(), queryResponseList);
            }
    
            // favorite
            if (fessConfig.isUserFavorite()) {
                ComponentUtil.getUserInfoHelper().storeQueryId(queryId, documentItems);
            }
    
        }
    
        /**
         * Internal search method that executes the actual search query.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
Back to top