Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setUserInfoId (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java

            this.userAgent = value;
        }
    
        public String getUserInfoId() {
            checkSpecifiedProperty("userInfoId");
            return convertEmptyToNull(userInfoId);
        }
    
        public void setUserInfoId(String value) {
            registerModifiedProperty("userInfoId");
            this.userInfoId = value;
        }
    
        public String getUserSessionId() {
            checkSpecifiedProperty("userSessionId");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/bsbhv/BsSearchLogBhv.java

                result.setUser(DfTypeUtil.toString(source.get("user")));
                result.setUserAgent(DfTypeUtil.toString(source.get("userAgent")));
                result.setUserInfoId(DfTypeUtil.toString(source.get("userInfoId")));
                result.setUserSessionId(DfTypeUtil.toString(source.get("userSessionId")));
                result.setVirtualHost(DfTypeUtil.toString(source.get("virtualHost")));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/SearchLogDbm.java

                    "userAgent");
            setupEpg(_epgMap, et -> ((SearchLog) et).getUserInfoId(), (et, vl) -> ((SearchLog) et).setUserInfoId(DfTypeUtil.toString(vl)),
                    "userInfoId");
            setupEpg(_epgMap, et -> ((SearchLog) et).getUserSessionId(), (et, vl) -> ((SearchLog) et).setUserSessionId(DfTypeUtil.toString(vl)),
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                userInfoBhv.batchUpdate(updateList);
                searchLogList.stream().forEach(searchLog -> {
                    searchLog.getUserInfo().ifPresent(userInfo -> {
                        searchLog.setUserInfoId(userInfo.getId());
                    });
                });
                if (fessConfig.isLoggingSearchUseLogfile()) {
                    insertList.forEach(this::writeSearchLogEvent);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top