- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for setConfigId (0.09 seconds)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFailureUrl.java
public String getConfigId() { checkSpecifiedProperty("configId"); return convertEmptyToNull(configId); } public void setConfigId(String value) { registerModifiedProperty("configId"); this.configId = value; } public Integer getErrorCount() { checkSpecifiedProperty("errorCount");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 6.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFailureUrlBhv.java
protected <RESULT extends FailureUrl> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { try { final RESULT result = entityType.newInstance(); result.setConfigId(DfTypeUtil.toString(source.get("configId"))); result.setErrorCount(DfTypeUtil.toInteger(source.get("errorCount"))); result.setErrorLog(DfTypeUtil.toString(source.get("errorLog")));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
}).orElseGet(() -> { final FailureUrl entity = new FailureUrl(); entity.setErrorCount(1); entity.setUrl(url); if (crawlingConfig != null) { entity.setConfigId(crawlingConfig.getConfigId()); } return entity; }); failureUrl.setErrorName(errorName); failureUrl.setErrorLog(getStackTrace(e));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.2K bytes - Click Count (0)