- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for CrawlingInfoParam (0.1 sec)
-
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(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
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");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.9K bytes - Viewed (0) -
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() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.9K bytes - Viewed (0)