- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setErrorName (0.13 sec)
-
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
if (crawlingConfig != null) { entity.setConfigId(crawlingConfig.getConfigId()); } return entity; }); failureUrl.setErrorName(errorName); failureUrl.setErrorLog(getStackTrace(e)); failureUrl.setLastAccessTime(ComponentUtil.getSystemHelper().getCurrentTimeAsLong()); failureUrl.setThreadName(Thread.currentThread().getName());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 24 01:20:42 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java
this.errorLog = value; } public String getErrorName() { checkSpecifiedProperty("errorName"); return convertEmptyToNull(errorName); } public void setErrorName(String value) { registerModifiedProperty("errorName"); this.errorName = value; } public Long getLastAccessTime() { checkSpecifiedProperty("lastAccessTime");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java
result.setErrorCount(DfTypeUtil.toInteger(source.get("errorCount"))); result.setErrorLog(DfTypeUtil.toString(source.get("errorLog"))); result.setErrorName(DfTypeUtil.toString(source.get("errorName"))); result.setLastAccessTime(DfTypeUtil.toLong(source.get("lastAccessTime"))); result.setThreadName(DfTypeUtil.toString(source.get("threadName")));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.6K bytes - Viewed (0)