Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CrawlingInfoParam (0.25 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 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/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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  3. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top