Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDocumentListByDocIds (0.09 sec)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                }
    
                final String[] docIds = userInfoHelper.getResultDocIds(queryId);
                final List<Map<String, Object>> docList = searchHelper.getDocumentListByDocIds(docIds, new String[] {
                        fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldDocId(), fessConfig.getIndexFieldFavoriteCount() },
                        OptionalThing.empty(), SearchRequestType.JSON);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                final FessConfig fessConfig = ComponentUtil.getFessConfig();
                try {
                    final UpdateRequest[] updateRequests =
                            searchHelper
                                    .getDocumentListByDocIds(clickCountMap.keySet().toArray(new String[clickCountMap.size()]),
                                            new String[] { fessConfig.getIndexFieldDocId(), fessConfig.getIndexFieldLang() },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchHelper.java

         * @param searchRequestType Type of search request for role-based access control
         * @return List of document data maps
         */
        public List<Map<String, Object>> getDocumentListByDocIds(final String[] docIds, final String[] fields,
                final OptionalThing<FessUserBean> userBean, final SearchRequestType searchRequestType) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
Back to top