Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getIngestFactory (0.14 sec)

  1. src/main/java/org/codelibs/fess/ingest/Ingester.java

         */
        public void register() {
            getIngestFactory().add(this);
        }
    
        /**
         * Gets the ingest factory instance for managing ingesters.
         *
         * @return the ingest factory instance
         */
        protected IngestFactory getIngestFactory() {
            return ComponentUtil.getIngestFactory();
        }
    
        /**
         * Processes a result data object for web/file crawling.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java

         * Sets up the ingest factory if available in the component system.
         */
        @PostConstruct
        public void init() {
            if (ComponentUtil.hasIngestFactory()) {
                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Creates an access result after processing the response data through ingesters.
         *
         * @param responseData the response data from the crawled resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            maxDocumentCacheSize = ComponentUtil.getFessConfig().getIndexerDataMaxDocumentCacheSizeAsInteger();
            if (ComponentUtil.hasIngestFactory()) {
                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Stores a document in the index after processing and validation.
         * Handles document transformation, field addition, and batched indexing.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            return getComponent(NOTIFICATION_HELPER);
        }
    
        /**
         * Gets the ingest factory component.
         * @return The ingest factory.
         */
        public static IngestFactory getIngestFactory() {
            return getComponent(INGEST_FACTORY);
        }
    
        /**
         * Gets the script engine factory component.
         * @return The script engine factory.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            if (ComponentUtil.hasIngestFactory()) {
                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Destroys the IndexUpdater when the container is shutting down.
         * Stops all crawler instances if crawling is still in progress.
         */
        @PreDestroy
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top