Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for storeInfo (0.06 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                private CrawlingInfo storedInfo;
                private List<CrawlingInfoParam> storedParams;
    
                @Override
                public CrawlingInfo getLast(String sessionId) {
                    return null; // Return null to simulate create scenario
                }
    
                @Override
                public void store(CrawlingInfo entity) {
                    storedInfo = entity;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                    crawlingInfoParam.setValue(entry.getValue());
                    crawlingInfoParamList.add(crawlingInfoParam);
                }
                getCrawlingInfoService().storeInfo(crawlingInfoParamList);
            }
    
            infoMap = null;
        }
    
        /**
         * Adds a key-value pair to the information map.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         *
         * @param crawlingInfoParamList the list of crawling information parameters to store
         * @throws FessSystemException if the parameter list is null
         */
        public void storeInfo(final List<CrawlingInfoParam> crawlingInfoParamList) {
            if (crawlingInfoParamList == null) {
                throw new FessSystemException("Crawling Session Info is null.");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
Back to top