Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for CrawlingInfoParam (0.24 sec)

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

    import org.codelibs.fess.es.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();
        }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  2. 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) {
    Java
    - Registered: Mon Apr 22 08:04:10 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/bsentity/dbmeta/CrawlingInfoParamDbm.java

        {
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCrawlingInfoId(),
                    (et, vl) -> ((CrawlingInfoParam) et).setCrawlingInfoId(DfTypeUtil.toString(vl)), "crawlingInfoId");
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCreatedTime(),
                    (et, vl) -> ((CrawlingInfoParam) et).setCreatedTime(DfTypeUtil.toLong(vl)), "createdTime");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoParamBhv.java

            return createOptionalEntity(doSelectByPK(id, tp), id);
        }
    
        @Override
        protected Class<? extends CrawlingInfoParam> typeOfSelectedEntity() {
            return CrawlingInfoParam.class;
        }
    
        @Override
        protected Class<CrawlingInfoParam> typeOfHandlingEntity() {
            return CrawlingInfoParam.class;
        }
    
        @Override
        protected Class<CrawlingInfoParamCB> typeOfHandlingConditionBean() {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  5. 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());
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/es/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() {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top