- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getResultDocIds (0.05 sec)
-
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 (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
* * @param queryId the unique identifier for the search query * @return an array of document IDs, or an empty array if not found */ public String[] getResultDocIds(final String queryId) { return LaRequestUtil.getOptionalRequest().map(req -> req.getSession(false)).map(session -> { final Map<String, String[]> resultUrlCache = getResultDocIdsCache(session);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0)