- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setUserSessionId (0.13 sec)
-
src/main/java/org/codelibs/fess/es/log/bsentity/BsClickLog.java
this.url = value; } public String getUserSessionId() { checkSpecifiedProperty("userSessionId"); return convertEmptyToNull(userSessionId); } public void setUserSessionId(String value) { registerModifiedProperty("userSessionId"); this.userSessionId = value; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
clickLog.setRequestedAt(systemHelper.getCurrentTimeAsLocalDateTime()); clickLog.setQueryRequestedAt(DfTypeUtil.toLocalDateTime(Long.parseLong(form.rt))); clickLog.setUserSessionId(userSessionId); clickLog.setDocId(form.docId); clickLog.setQueryId(form.queryId); if (form.order != null) { clickLog.setOrder(form.order);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsbhv/BsClickLogBhv.java
result.setRequestedAt(toLocalDateTime(source.get("requestedAt"))); result.setUrl(DfTypeUtil.toString(source.get("url"))); result.setUserSessionId(DfTypeUtil.toString(source.get("userSessionId"))); return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.5K bytes - Viewed (0)