Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getChildDocumentList (0.07 sec)

  1. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            final IndexingHelper indexingHelper = ComponentUtil.getIndexingHelper();
            final List<Map<String, Object>> docList =
                    indexingHelper.getChildDocumentList(searchEngineClient, id, new String[] { fessConfig.getIndexFieldUrl() });
            if (docList.isEmpty()) {
                return null;
            }
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

         * @param fields the fields to include in the response (null for all fields)
         * @return a list of child documents
         */
        public List<Map<String, Object>> getChildDocumentList(final SearchEngineClient searchEngineClient, final String id,
                final String[] fields) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                    return docList;
                }
            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final List<Map<String, Object>> documents = indexingHelper.getChildDocumentList(client, "001", new String[] { "title", "content" });
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
Back to top