- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for CrawlingInfoParam (0.15 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/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());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.6K bytes - Viewed (0) -
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() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K 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/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) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.4K 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)