Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for storeInfo (0.09 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                    crawlingInfoParam.setValue(entry.getValue());
                    crawlingInfoParamList.add(crawlingInfoParam);
                }
                getCrawlingInfoService().storeInfo(crawlingInfoParamList);
            }
    
            infoMap = null;
        }
    
        public synchronized void putToInfoMap(final String key, final String value) {
            if (infoMap == null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                crawlingInfoBhv.batchDelete(crawlingInfoList, op -> op.setRefreshPolicy(Constants.TRUE));
            }
        }
    
        public void storeInfo(final List<CrawlingInfoParam> crawlingInfoParamList) {
            if (crawlingInfoParamList == null) {
                throw new FessSystemException("Crawling Session Info is null.");
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top