Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CrawlingInfoBhv (0.19 sec)

  1. src/main/java/org/codelibs/fess/es/config/exbhv/CrawlingInfoBhv.java

    import java.util.regex.Pattern;
    
    import org.codelibs.fess.es.config.bsbhv.BsCrawlingInfoBhv;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author FreeGen
     */
    public class CrawlingInfoBhv extends BsCrawlingInfoBhv {
        private String indexName = null;
    
        @Override
        protected String asEsIndex() {
            if (indexName == null) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

        protected CrawlingInfoParamBhv crawlingInfoParamBhv;
    
        @Resource
        protected CrawlingInfoBhv crawlingInfoBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<CrawlingInfo> getCrawlingInfoList(final CrawlingInfoPager crawlingInfoPager) {
    
            final PagingResultBean<CrawlingInfo> crawlingInfoList = crawlingInfoBhv.selectPage(cb -> {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingInfoParam.java

            asDocMeta().version(version);
        }
    
        public OptionalEntity<CrawlingInfo> getCrawlingInfo() {
            if (crawlingInfo != null) {
                final CrawlingInfoBhv crawlingInfoBhv = ComponentUtil.getComponent(CrawlingInfoBhv.class);
                crawlingInfo = crawlingInfoBhv.selectEntity(cb -> {
                    cb.query().docMeta().setId_Equal(getCrawlingInfoId());
                });
            }
            return crawlingInfo;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/resources/esflute_config.xml

    	<component name="boostDocumentRuleBhv" class="org.codelibs.fess.es.config.exbhv.BoostDocumentRuleBhv"/>
    	<component name="crawlingInfoBhv" class="org.codelibs.fess.es.config.exbhv.CrawlingInfoBhv"/>
    	<component name="crawlingInfoParamBhv" class="org.codelibs.fess.es.config.exbhv.CrawlingInfoParamBhv"/>
    	<component name="dataConfigBhv" class="org.codelibs.fess.es.config.exbhv.DataConfigBhv"/>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Nov 28 12:59:14 GMT 2018
    - 2.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/CrawlingInfoDbm.java

            return "org.codelibs.fess.es.config.cbean.CrawlingInfoCB";
        }
    
        @Override
        public String getBehaviorTypeName() {
            return "org.codelibs.fess.es.config.exbhv.CrawlingInfoBhv";
        }
    
        // ===================================================================================
        //                                                                         Object Type
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.7K bytes
    - Viewed (0)
Back to top