Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 191 for Bean (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

            });
            ComponentUtil.getJobHelper().remove(scheduledJob);
        }
    
        /**
         * Sets up the list condition for the scheduled job query.
         * @param cb The scheduled job condition bean.
         * @param scheduledJobPager The scheduled job pager.
         */
        protected void setupListCondition(final ScheduledJobCB cb, final SchedulerPager scheduledJobPager) {
            if (scheduledJobPager.id != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

        }
    
        /**
         * Sets up the list condition for querying web configurations.
         * Applies search filters based on pager criteria such as name, URLs, and description.
         *
         * @param cb The condition bean for the query
         * @param webConfigPager The pager containing search criteria
         */
        protected void setupListCondition(final WebConfigCB cb, final WebConfigPager webConfigPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

        /**
         * Sets up the search conditions for retrieving file authentication configurations.
         * This method configures the query conditions and ordering for the database query.
         *
         * @param cb the condition bean for building the query
         * @param fileAuthenticationPager the pager containing search criteria
         */
        protected void setupListCondition(final FileAuthenticationCB cb, final FileAuthPager fileAuthenticationPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/JobLogService.java

        }
    
        /**
         * Sets up the query conditions for retrieving job logs based on the pager configuration.
         * Configures filtering and ordering for the database query.
         *
         * @param cb the condition bean for building the query
         * @param jobLogPager the pager containing filter and search criteria
         */
        protected void setupListCondition(final JobLogCB cb, final JobLogPager jobLogPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

            assertEquals(params, testSearcher.lastParams);
            assertEquals(userBean, testSearcher.lastUserBean);
        }
    
        public void test_search_withUserBean() {
            // Test search with user bean present
            TestRankFusionSearcher testSearcher = new TestRankFusionSearcher();
            String query = "user query";
            SearchRequestParams params = createTestSearchRequestParams();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

         * This method applies various filter conditions based on the pager parameters
         * including name, paths, and description filters with wildcard and phrase matching.
         *
         * @param cb the condition bean for building the database query
         * @param fileConfigPager the pager containing search filter criteria
         */
        protected void setupListCondition(final FileConfigCB cb, final FileConfigPager fileConfigPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/BadWordService.java

            badWordBhv.delete(badWord, op -> op.setRefreshPolicy(Constants.TRUE));
    
        }
    
        /**
         * Sets up search conditions for bad word list queries.
         * @param cb The condition bean for the query.
         * @param badWordPager The pager containing search criteria.
         */
        protected void setupListCondition(final BadWordCB cb, final BadWordPager badWordPager) {
            if (badWordPager.id != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/QueryProcessor.java

        /**
         * Initializes the query processor after construction.
         * This method creates the initial filter chain from the registered filters.
         * Called automatically by the DI container after bean construction.
         */
        @PostConstruct
        public void init() {
            createFilterChain();
        }
    
        /**
         * Executes query processing through the filter chain.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

         * from the data store. This method is called automatically after dependency
         * injection is complete.
         *
         * PostConstruct annotation ensures this method is called after the bean
         * has been constructed and all dependencies have been injected.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

         * Initializes the process management system with default timeout values.
         */
        public ProcessHelper() {
            // Default constructor
        }
    
        /**
         * Cleanup method called when the bean is destroyed.
         * Stops all running processes and cleans up resources.
         */
        @PreDestroy
        public void destroy() {
            for (final String sessionId : runningProcessMap.keySet()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
Back to top