Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 239 for Document (0.05 sec)

  1. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

                logger.debug("The number of an added document is {}.", documentSize.get());
            }
    
        }
    
        /**
         * Processes a document through the ingest pipeline.
         * Applies all available ingesters to transform the document data.
         *
         * @param paramMap the data store parameters
         * @param dataMap the document data to process
         * @return the processed document data
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            });
            return asEditHtml();
        }
    
        /**
         * Displays the form for editing an existing document.
         *
         * @param form the edit form containing document ID
         * @return HTML response for the document edit form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java

        // =========
        /** Search engine client for document operations */
        @Resource
        protected SearchEngineClient searchEngineClient;
    
        // ===================================================================================
        // Search Execute
        //
    
        /**
         * Performs bulk document operations (index multiple documents).
         * Validates document fields and adds default values where necessary.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java

     * This interface provides methods for storing documents, tracking processing metrics,
     * and committing changes to the search index.
     */
    public interface IndexUpdateCallback {
    
        /**
         * Stores a document in the search index with the specified parameters and data.
         *
         * @param paramMap the data store parameters containing configuration and metadata
         * @param dataMap the document data to be indexed as key-value pairs
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/DocList.java

    import java.util.Arrays;
    import java.util.Map;
    
    /**
     * A specialized ArrayList for storing document data with additional metadata.
     * This class extends ArrayList to hold document maps while tracking content size
     * and processing time metrics. It's used throughout the Fess search system to
     * manage collections of search results and crawled documents.
     *
     */
    public class DocList extends ArrayList<Map<String, Object>> {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

            }
            return null;
        }
    
        /**
         * Stores the document IDs associated with a search query for tracking purposes.
         * This method caches the document IDs returned for a specific query to enable click tracking and analytics.
         *
         * @param queryId the unique identifier for the search query
         * @param documentItems the list of document maps containing search results
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            }
        }
    
        /**
         * Extracts anchor URLs from the HTML document.
         *
         * @param document the parsed HTML document
         * @param responseData the response data from crawling
         * @return list of anchor URLs found in the document
         */
        protected List<String> getAnchorList(final Document document, final ResponseData responseData) {
            List<RequestData> anchorList = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java

        }
    
        /**
         * Gets a boost document rule by its ID.
         * @param id The boost document rule ID.
         * @return Optional entity containing the boost document rule if found.
         */
        public OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final String id) {
            return boostDocumentRuleBhv.selectByPK(id);
        }
    
        /**
         * Stores (inserts or updates) a boost document rule.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

     * or search results. This form captures the necessary parameters for document
     * access tracking and error page fallback information.
     *
     */
    public class GoForm {
    
        /**
         * Default constructor for GoForm.
         */
        public GoForm() {
            super();
        }
    
        /**
         * Document identifier for the target document to redirect to.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            }
            return childUrlSet;
        }
    
        /**
         * Retrieves child URLs for a given document ID from the search engine index.
         * This method queries the search engine for child documents and extracts their URLs.
         *
         * @param searchEngineClient the search engine client to query
         * @param id the parent document ID to find children for
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
Back to top