Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getUrlList (1.42 sec)

  1. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

         * @return a list of URLs from the input list that are in the user's favorites, or an empty list if the user is not found or has no matching favorites
         */
        public List<String> getUrlList(final String userCode, final List<String> urlList) {
            if (urlList.isEmpty()) {
                return urlList;
            }
    
            return userInfoBhv.selectByPK(userCode).map(userInfo -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    if (urlObj != null) {
                        urlList.add(urlObj);
                    }
                }
                urlList = favoriteLogService.getUrlList(userCode, urlList);
                final List<String> docIdList = new ArrayList<>(urlList.size());
                for (final Map<String, Object> doc : docList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
Back to top