- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for setDocId (0.15 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsFavoriteLog.java
this.createdAt = value; } public String getDocId() { checkSpecifiedProperty("docId"); return convertEmptyToNull(docId); } public void setDocId(String value) { registerModifiedProperty("docId"); this.docId = value; } public String getQueryId() { checkSpecifiedProperty("queryId");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsClickLog.java
this.urlId = value; } public String getDocId() { checkSpecifiedProperty("docId"); return convertEmptyToNull(docId); } public void setDocId(String value) { registerModifiedProperty("docId"); this.docId = value; } public Integer getOrder() { checkSpecifiedProperty("order"); return order; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/FavoriteLogDbm.java
(et, vl) -> ((FavoriteLog) et).setCreatedAt(DfTypeUtil.toLocalDateTime(vl)), "createdAt"); setupEpg(_epgMap, et -> ((FavoriteLog) et).getDocId(), (et, vl) -> ((FavoriteLog) et).setDocId(DfTypeUtil.toString(vl)), "docId"); setupEpg(_epgMap, et -> ((FavoriteLog) et).getQueryId(), (et, vl) -> ((FavoriteLog) et).setQueryId(DfTypeUtil.toString(vl)), "queryId");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
public String getDocId() { return docId; } /** * Sets the document ID. * * @param docId the document ID */ public void setDocId(final String docId) { this.docId = docId; } /** * Gets the source snippet. * * @return the source snippet */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
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); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsClickLogBhv.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/ChatMessageTest.java
final ChatSource source = new ChatSource(); source.setIndex(10); source.setTitle("Document Title"); source.setUrl("https://test.com"); source.setDocId("id-456"); source.setSnippet("A short snippet"); assertEquals(10, source.getIndex()); assertEquals("Document Title", source.getTitle());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
favoriteLog.setUserInfoId(userInfo.getId()); favoriteLog.setUrl(favoriteUrl); favoriteLog.setDocId(docId); favoriteLog.setQueryId(queryId); favoriteLog.setCreatedAt(systemHelper.getCurrentTimeAsLocalDateTime()); })) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1)