- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for FavoriteLogBhv (0.15 sec)
-
src/main/java/org/codelibs/fess/es/log/exbhv/FavoriteLogBhv.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.util.DfTypeUtil; /** * @author FreeGen */ public class FavoriteLogBhv extends BsFavoriteLogBhv { private static final Logger logger = LogManager.getLogger(FavoriteLogBhv.class); private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/resources/esflute_log.xml
<!-- The components of Behavior. --> <component name="clickLogBhv" class="org.codelibs.fess.es.log.exbhv.ClickLogBhv"/> <component name="favoriteLogBhv" class="org.codelibs.fess.es.log.exbhv.FavoriteLogBhv"/> <component name="searchLogBhv" class="org.codelibs.fess.es.log.exbhv.SearchLogBhv"/> <component name="userInfoBhv" class="org.codelibs.fess.es.log.exbhv.UserInfoBhv"/>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 13 05:17:34 UTC 2017 - 829 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
public class FavoriteLogService { @Resource protected SystemHelper systemHelper; @Resource protected UserInfoBhv userInfoBhv; @Resource protected FavoriteLogBhv favoriteLogBhv; @Resource protected FessConfig fessConfig; public boolean addUrl(final String userCode, final BiConsumer<UserInfo, FavoriteLog> favoriteLogLambda) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
@Resource private SearchLogBhv searchLogBhv; @Resource private ClickLogBhv clickLogBhv; @Resource private FavoriteLogBhv favoriteLogBhv; @Resource private UserInfoBhv userInfoBhv; @Resource private SystemHelper systemHelper; @Resource protected FessConfig fessConfig;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.4K bytes - Viewed (0) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/FavoriteLogDbm.java
return "org.codelibs.fess.es.log.cbean.FavoriteLogCB"; } @Override public String getBehaviorTypeName() { return "org.codelibs.fess.es.log.exbhv.FavoriteLogBhv"; } // =================================================================================== // Object Type
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0)