Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getCrawlingInfoId (0.36 sec)

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

                final CrawlingInfoBhv crawlingInfoBhv = ComponentUtil.getComponent(CrawlingInfoBhv.class);
                crawlingInfo = crawlingInfoBhv.selectEntity(cb -> {
                    cb.query().docMeta().setId_Equal(getCrawlingInfoId());
                });
            }
            return crawlingInfo;
        }
    
        public String getKeyMsg() {
            final Locale locale = ComponentUtil.getRequestManager().getUserLocale();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfoParam.java

        //                                                                            Accessor
        //                                                                            ========
        public String getCrawlingInfoId() {
            checkSpecifiedProperty("crawlingInfoId");
            return convertEmptyToNull(crawlingInfoId);
        }
    
        public void setCrawlingInfoId(String value) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/CrawlingInfoParamDbm.java

        //                                       ---------------
        protected final Map<String, PropertyGateway> _epgMap = newHashMap();
        {
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCrawlingInfoId(),
                    (et, vl) -> ((CrawlingInfoParam) et).setCrawlingInfoId(DfTypeUtil.toString(vl)), "crawlingInfoId");
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCreatedTime(),
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

                return finished;
            }
    
            public void stopCrawling() {
                if (dataStore != null) {
                    dataStore.stop();
                }
            }
    
            public String getCrawlingInfoId() {
                return initParamMap.getAsString(Constants.CRAWLING_INFO_ID);
            }
    
            public boolean isRunning() {
                return running;
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
Back to top