- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for FavoriteLog (0.07 sec)
-
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
* @return true if the URL was successfully added to favorites, false if the user was not found */ public boolean addUrl(final String userCode, final BiConsumer<UserInfo, FavoriteLog> favoriteLogLambda) { return userInfoBhv.selectByPK(userCode).map(userInfo -> { final FavoriteLog favoriteLog = new FavoriteLog();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
if (!favoriteLogService.addUrl(userCode, (userInfo, favoriteLog) -> { favoriteLog.setUserInfoId(userInfo.getId()); favoriteLog.setUrl(favoriteUrl); favoriteLog.setDocId(docId); favoriteLog.setQueryId(queryId); favoriteLog.setCreatedAt(systemHelper.getCurrentTimeAsLocalDateTime());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
* * @param e The log entity to delete (ClickLog, FavoriteLog, UserInfo, or SearchLog) * @throws FessSystemException if the entity type is not recognized */ public void deleteSearchLog(final Object e) { if (e instanceof final ClickLog clickLog) { clickLogBhv.delete(clickLog); } else if (e instanceof final FavoriteLog favoriteLog) { favoriteLogBhv.delete(favoriteLog);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
bhv.selectCursor(cb -> { cb.query().matchAll(); cb.query().addOrderBy_CreatedAt_Asc(); }, new LogEntityRowHandler<FavoriteLog>() { @Override public void handle(final FavoriteLog entity) { final StringBuilder buf = new StringBuilder(); buf.append('{');
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0)