Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for UserInfoBhv (0.05 sec)

  1. src/main/java/org/codelibs/fess/opensearch/log/exbhv/UserInfoBhv.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.util.DfTypeUtil;
    
    /**
     * @author FreeGen
     */
    public class UserInfoBhv extends BsUserInfoBhv {
        private static final Logger logger = LogManager.getLogger(UserInfoBhv.class);
    
        private String indexName = null;
    
        @Override
        protected String asEsIndex() {
            if (indexName == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/UserInfoService.java

    import org.codelibs.fess.opensearch.log.exbhv.UserInfoBhv;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing user information data.
     * This service provides operations for maintaining and cleaning up user information records.
     */
    public class UserInfoService {
    
        @Resource
        private UserInfoBhv userInfoBhv;
    
        @Resource
        private SystemHelper systemHelper;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java

            if (getUserInfoId() == null) {
                return OptionalEntity.empty();
            }
            if (userInfo == null) {
                final UserInfoBhv userInfoBhv = ComponentUtil.getComponent(UserInfoBhv.class);
                userInfo = userInfoBhv.selectByPK(getUserInfoId());
            }
            return userInfo;
        }
    
        public void setUserInfo(final OptionalEntity<UserInfo> userInfo) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

        @Resource
        protected SystemHelper systemHelper;
    
        /** Behavior class for user information database operations. */
        @Resource
        protected UserInfoBhv userInfoBhv;
    
        /** Behavior class for favorite log database operations. */
        @Resource
        protected FavoriteLogBhv favoriteLogBhv;
    
        /** Configuration settings for the Fess search system. */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  5. 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)
  6. src/main/resources/esflute_log.xml

    	<component name="searchLogBhv" class="org.codelibs.fess.opensearch.log.exbhv.SearchLogBhv"/>
    	<component name="userInfoBhv" class="org.codelibs.fess.opensearch.log.exbhv.UserInfoBhv"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 869 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/UserInfoDbm.java

            return "org.codelibs.fess.opensearch.log.cbean.UserInfoCB";
        }
    
        @Override
        public String getBehaviorTypeName() {
            return "org.codelibs.fess.opensearch.log.exbhv.UserInfoBhv";
        }
    
        // ===================================================================================
        //                                                                         Object Type
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top