Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for crawling_info_param (1.74 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingInfoParam.java

    import org.codelibs.fess.opensearch.config.exbhv.CrawlingInfoBhv;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class CrawlingInfoParam extends BsCrawlingInfoParam {
    
        private static final long serialVersionUID = 1L;
    
        private OptionalEntity<CrawlingInfo> crawlingInfo;
    
        public String getId() {
            return asDocMeta().id();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            if (infoMap != null) {
                final List<CrawlingInfoParam> crawlingInfoParamList = new ArrayList<>();
                for (final Map.Entry<String, String> entry : infoMap.entrySet()) {
                    final CrawlingInfoParam crawlingInfoParam = new CrawlingInfoParam();
                    crawlingInfoParam.setCrawlingInfoId(crawlingInfo.getId());
                    crawlingInfoParam.setKey(entry.getKey());
    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/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            final String sessionId = "info-map-session";
            final List<CrawlingInfoParam> paramList = new ArrayList<>();
    
            CrawlingInfoParam param1 = new CrawlingInfoParam();
            param1.setKey("total_docs");
            param1.setValue("1500");
            paramList.add(param1);
    
            CrawlingInfoParam param2 = new CrawlingInfoParam();
            param2.setKey("error_count");
            param2.setValue("3");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         */
        public void storeInfo(final List<CrawlingInfoParam> crawlingInfoParamList) {
            if (crawlingInfoParamList == null) {
                throw new FessSystemException("Crawling Session Info is null.");
            }
    
            final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
            for (final CrawlingInfoParam crawlingInfoParam : crawlingInfoParamList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingInfo.java

        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        public void setCrawlingInfoInfoList(final List<CrawlingInfoParam> crawlingInfoParamList) {
            this.crawlingInfoParamList = crawlingInfoParamList;
        }
    
        public List<CrawlingInfoParam> getCrawlingInfoParamList() {
            return crawlingInfoParamList;
        }
    
        @Override
        public String toString() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top