Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for UserInfo (0.05 sec)

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

                        searchLog.getUserInfo().ifPresent(userInfo -> {
                            final String code = userInfo.getId();
                            final UserInfo oldUserInfo = userInfoMap.get(code);
                            if (oldUserInfo != null) {
                                userInfo.setCreatedAt(oldUserInfo.getCreatedAt());
                            }
                            userInfoMap.put(code, userInfo);
                        });
    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/FavoriteLogService.java

         * @param favoriteLogLambda a lambda function that accepts UserInfo and FavoriteLog to populate the favorite log data
         * @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)
  3. 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<UserInfo>() {
                    @Override
                    public void handle(final UserInfo entity) {
                        final StringBuilder buf = new StringBuilder();
                        buf.append('{');
                        appendJson("id", entity.getId(), 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)
  4. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

            } else if (e instanceof final FavoriteLog favoriteLog) {
                favoriteLogBhv.delete(favoriteLog);
            } else if (e instanceof final UserInfo userInfo) {
                userInfoBhv.delete(userInfo);
            } else if (e instanceof final SearchLog searchLog) {
                searchLogBhv.delete(searchLog);
            } else {
                throw new FessSystemException("Unknown log entity: " + e);
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                            <la:errors property="userInfo"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="userInfo" styleClass="form-check-input" property="userInfo"/>
                                                <label for="userInfo" class="form-check-label">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setCrawlingThreadCount(form.crawlingThreadCount);
            fessConfig.setSearchLog(isCheckboxEnabled(form.searchLog));
            fessConfig.setUserInfo(isCheckboxEnabled(form.userInfo));
            fessConfig.setUserFavorite(isCheckboxEnabled(form.userFavorite));
            fessConfig.setWebApiJson(isCheckboxEnabled(form.webApiJson));
            fessConfig.setAppValue(form.appValue);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

        /** The crawling thread count setting. */
        public String crawlingThreadCount;
    
        /** The search log setting. */
        public String searchLog;
    
        /** The user info setting. */
        public String userInfo;
    
        /** The user favorite setting. */
        public String userFavorite;
    
        /** The web API JSON setting. */
        public String webApiJson;
    
        /** The default label value setting. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String searchLog;
    
        /**
         * Enable or disable user information tracking.
         * When enabled, user information is stored and tracked.
         */
        @Size(max = 10)
        public String userInfo;
    
        /**
         * Enable or disable user favorite functionality.
         * When enabled, users can save favorite search results.
         */
        @Size(max = 10)
        public String userFavorite;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. 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);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.searchLog=Search Log
    labels.sort=Sort
    labels.start=Start
    labels.loginRequired=Login Required
    labels.loginLink=Show Login Link
    labels.threadName=Thread Name
    labels.url=URL
    labels.userFavorite=Favorite Log
    labels.userInfo=User Info
    labels.webApiJson=JSON Response
    labels.webConfigName=Web Crawl Config Name
    labels.allLanguages=All Languages
    labels.dictId=Dictionary ID
    labels.docId=Document ID
    labels.endTime=End Time
    labels.hq=hq
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
Back to top