- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for crawling_info_param (0.12 sec)
-
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/resources/esclient.xml
</postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_config.crawling_info/crawling_info"</arg> </postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_config.crawling_info_param/crawling_info_param"</arg> </postConstruct> <postConstruct name="addIndexConfig"> <arg>"fess_config.data_config/data_config"</arg> </postConstruct> <postConstruct name="addIndexConfig">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Oct 21 12:20:52 UTC 2024 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsCrawlingInfoParamCQ.java
// ============= @Override public String asTableDbName() { return "crawling_info_param"; } @Override public String xgetAliasName() { return "crawling_info_param"; } // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 36K 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/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)