- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getCrawlingInfoId (0.12 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsCrawlingInfoParam.java
// Accessor // ======== public String getCrawlingInfoId() { checkSpecifiedProperty("crawlingInfoId"); return convertEmptyToNull(crawlingInfoId); } public void setCrawlingInfoId(String value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingInfoParam.java
final CrawlingInfoBhv crawlingInfoBhv = ComponentUtil.getComponent(CrawlingInfoBhv.class); crawlingInfo = crawlingInfoBhv.selectEntity(cb -> { cb.query().docMeta().setId_Equal(getCrawlingInfoId()); }); } return crawlingInfo; } public String getKeyMsg() { final Locale locale = ComponentUtil.getRequestManager().getUserLocale();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoParamDbm.java
// --------------- protected final Map<String, PropertyGateway> _epgMap = newHashMap(); { setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCrawlingInfoId(), (et, vl) -> ((CrawlingInfoParam) et).setCrawlingInfoId(DfTypeUtil.toString(vl)), "crawlingInfoId"); setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCreatedTime(),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
public void storeInfo(List<CrawlingInfoParam> crawlingInfoParamList) { assertEquals(2, crawlingInfoParamList.size()); assertEquals("info-123", crawlingInfoParamList.get(0).getCrawlingInfoId()); } }, CrawlingInfoService.class.getCanonicalName()); // Add info to map crawlingInfoHelper.putToInfoMap("status", "completed");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
} /** * Gets the crawling information ID for this thread. * * @return the crawling info ID from the initialization parameters */ public String getCrawlingInfoId() { return initParamMap.getAsString(Constants.CRAWLING_INFO_ID); } /** * Checks if the crawling thread is currently running. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0)