Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                cb.query().setUrl_Equal(url);
            });
        }
    
        public long getFavoriteCount(final String url) {
            final FavoriteLogBhv favoriteLogBhv = ComponentUtil.getComponent(FavoriteLogBhv.class);
            return favoriteLogBhv.selectCount(cb -> {
                cb.query().setUrl_Equal(url);
            });
        }
    
        protected UserInfo storeUserInfo(final String userCode) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            final long timeout = fessConfig.getIndexBackupLogLoadTimeoutAsInteger().longValue();
            return writer -> {
                final FavoriteLogBhv bhv = ComponentUtil.getComponent(FavoriteLogBhv.class);
                bhv.selectCursor(cb -> {
                    cb.query().matchAll();
                    cb.query().addOrderBy_CreatedAt_Asc();
                }, new LogEntityRowHandler<FavoriteLog>() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        @Resource
        protected UrlFilterService urlFilterService;
    
        @Resource
        protected ClickLogBhv clickLogBhv;
    
        @Resource
        protected FavoriteLogBhv favoriteLogBhv;
    
        @Resource
        protected SystemHelper systemHelper;
    
        @Resource
        protected IndexingHelper indexingHelper;
    
        protected boolean finishCrawling = false;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top