- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 413 for queryId (0.04 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
this.requestedTime = requestedTime; } /** * Sets the unique identifier for this search query session. * * @param queryId The query identifier */ public void setQueryId(final String queryId) { this.queryId = queryId; } /** * Gets the list of search result documents. * * @return The list of search result documents
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} final String docId = docIdObj.toString(); final String queryId = request.getParameter("queryId"); final String[] docIds = userInfoHelper.getResultDocIds(URLDecoder.decode(queryId, Constants.UTF_8)); if (docIds == null) { throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, "No searched urls.");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
* Stores the document IDs associated with a search query for tracking purposes. * This method caches the document IDs returned for a specific query to enable click tracking and analytics. * * @param queryId the unique identifier for the search query * @param documentItems the list of document maps containing search results */ public void storeQueryId(final String queryId, final List<Map<String, Object>> documentItems) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
if (StringUtil.isNotBlank(pager.queryId)) { cb.query().setQueryId_Term(pager.queryId); } if (StringUtil.isNotBlank(pager.userSessionId)) { cb.query().setUserSessionId_Term(pager.userSessionId); } if (StringUtil.isNotBlank(pager.accessType)) { cb.query().setAccessType_Term(pager.accessType); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/search/SearchAction.java
/** * Registers the render data. * @param data The render data. */ public void register(final RenderData data) { RenderDataUtil.register(data, "queryId", queryId); RenderDataUtil.register(data, "documentItems", documentItems); RenderDataUtil.register(data, "facetResponse", facetResponse);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java
private int currentPageNumber; /** Type of log being displayed (default: search). */ public String logType = LOG_TYPE_SEARCH; /** Query ID filter for search logs. */ public String queryId; /** User session ID filter for search logs. */ public String userSessionId; /** Time range filter for search logs (format: "yyyy-MM-dd HH:mm - yyyy-MM-dd HH:mm"). */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoForm.java
* This field is optional and used for request verification. */ public String hash; /** * Query identifier associated with the search that led to this document access. * This is required for tracking and analytics purposes. */ @Required public String queryId; /** * Order or ranking position of the document in search results.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
* @param queryId The ID of the search query. * @param query The search query. * @param pageStart The starting page number. * @param pageSize The size of the page. * @param queryResponseList The list of query responses. */ public void addSearchLog(final SearchRequestParams params, final LocalDateTime requestedTime, final String queryId, final String query,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java
* Contains the document ID and query parameters needed to retrieve thumbnail images. */ public class ThumbnailForm { /** * The document ID for which to retrieve the thumbnail. */ @Required @Size(max = 100) public String docId; /** * The query ID associated with the search request. */ @Required public String queryId; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
.addSearchLog(params, DfTypeUtil.toLocalDateTime(requestedTime), queryId, query, params.getStartPosition(), params.getPageSize(), queryResponseList); } // favorite if (fessConfig.isUserFavorite()) { ComponentUtil.getUserInfoHelper().storeQueryId(queryId, documentItems); } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0)