Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for clickLogBhv (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

        private DataService<OpenSearchAccessResult> dataService;
        private UrlQueueService<OpenSearchUrlQueue> urlQueueService;
        private UrlFilterService urlFilterService;
        private ClickLogBhv clickLogBhv;
        private FavoriteLogBhv favoriteLogBhv;
        private IngestFactory ingestFactory;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        *
        * @param url The URL.
        * @return The click count.
        */
        public int getClickCount(final String url) {
            final ClickLogBhv clickLogBhv = ComponentUtil.getComponent(ClickLogBhv.class);
            return clickLogBhv.selectCount(cb -> {
                cb.query().setUrl_Equal(url);
            });
        }
    
        /**
         * Gets the favorite count for a URL.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 29.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

        /** Behavior handler for search log operations. */
        @Resource
        private SearchLogBhv searchLogBhv;
    
        /** Behavior handler for click log operations. */
        @Resource
        private ClickLogBhv clickLogBhv;
    
        /** Behavior handler for favorite log operations. */
        @Resource
        private FavoriteLogBhv favoriteLogBhv;
    
        /** Behavior handler for user information operations. */
        @Resource
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 32.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/ClickLogDbm.java

            return "org.codelibs.fess.opensearch.log.cbean.ClickLogCB";
        }
    
        @Override
        public String getBehaviorTypeName() {
            return "org.codelibs.fess.opensearch.log.exbhv.ClickLogBhv";
        }
    
        // ===================================================================================
        //                                                                         Object Type
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 10.6K bytes
    - Click Count (0)
Back to Top