Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getUrlList (0.05 seconds)

  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 -> {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.6K bytes
    - Click Count (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) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 55.4K bytes
    - Click Count (1)
Back to Top