Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for userInfoBhv (0.06 sec)

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

         */
        protected UserInfo storeUserInfo(final String userCode) {
            final UserInfoBhv userInfoBhv = ComponentUtil.getComponent(UserInfoBhv.class);
    
            final LocalDateTime now = ComponentUtil.getSystemHelper().getCurrentTimeAsLocalDateTime();
            final UserInfo userInfo = userInfoBhv.selectByPK(userCode).map(e -> {
                e.setUpdatedAt(now);
                return e;
            }).orElseGet(() -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

        /** Behavior handler for favorite log operations. */
        @Resource
        private FavoriteLogBhv favoriteLogBhv;
    
        /** Behavior handler for user information operations. */
        @Resource
        private UserInfoBhv userInfoBhv;
    
        /** System helper for date/time operations. */
        @Resource
        private SystemHelper systemHelper;
    
        /** Fess configuration settings. */
        @Resource
        protected FessConfig fessConfig;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            final long timeout = fessConfig.getIndexBackupLogLoadTimeoutAsInteger().longValue();
            return writer -> {
                final UserInfoBhv bhv = ComponentUtil.getComponent(UserInfoBhv.class);
                bhv.selectCursor(cb -> {
                    cb.query().matchAll();
                    cb.query().addOrderBy_CreatedAt_Asc();
                }, new LogEntityRowHandler<UserInfo>() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
Back to top