- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getErrorCount (0.14 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFailureUrl.java
return convertEmptyToNull(configId); } public void setConfigId(String value) { registerModifiedProperty("configId"); this.configId = value; } public Integer getErrorCount() { checkSpecifiedProperty("errorCount"); return errorCount; } public void setErrorCount(Integer value) { registerModifiedProperty("errorCount");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
if (crawlingConfig != null) { cb.query().setConfigId_Equal(crawlingConfig.getConfigId()); } }).map(entity -> { entity.setErrorCount(entity.getErrorCount() + 1); return entity; }).orElseGet(() -> { final FailureUrl entity = new FailureUrl(); entity.setErrorCount(1); entity.setUrl(url);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FailureUrlDbm.java
{ setupEpg(_epgMap, et -> ((FailureUrl) et).getConfigId(), (et, vl) -> ((FailureUrl) et).setConfigId(DfTypeUtil.toString(vl)), "configId"); setupEpg(_epgMap, et -> ((FailureUrl) et).getErrorCount(), (et, vl) -> ((FailureUrl) et).setErrorCount(DfTypeUtil.toInteger(vl)), "errorCount");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0)