- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for failureurl (0.05 sec)
-
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) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
failureUrlBhv.insertOrUpdate(failureUrl, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /** * Deletes a failure URL entity from the data store. * * @param failureUrl the FailureUrl entity to delete */ public void delete(final FailureUrl failureUrl) { failureUrlBhv.delete(failureUrl, op -> {
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/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
FailureUrl failureUrl = new FailureUrl(); failureUrl.setId("E" + i); failureUrl.setUrl("http://test.com/" + i + ".html"); failureUrl.setErrorCount(i); failureUrl.setErrorName("TestError" + i); list.add(failureUrl); } return list; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
} else { errorName = t.getClass().getCanonicalName(); } final FailureUrl failureUrl = storeFailureUrl(crawlerContext, urlQueue, errorName, t); if (failureUrl != null) { failureUrlId = failureUrl.getId(); } } catch (final ContainerNotAvailableException e) { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
return asJson(new ApiResponse().status(Status.OK).result()); } /** * Creates an EditBody from a FailureUrl entity. * * @param entity the FailureUrl entity * @return the EditBody representation */ protected EditBody createEditBody(final FailureUrl entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/EditBody.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.failureurl; import org.codelibs.fess.app.web.admin.failureurl.EditForm; /** * Request body class for failure URL edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/SearchBody.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.failureurl; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for failure URL administration API. */ public class SearchBody extends BaseSearchBody { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/SearchForm.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.failureurl; /** * The search form for Failure URL. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** The path of the HTML: /admin/failureurl/admin_failureurl.jsp */ HtmlNext path_AdminFailureurl_AdminFailureurlJsp = new HtmlNext("/admin/failureurl/admin_failureurl.jsp"); /** The path of the HTML: /admin/failureurl/admin_failureurl_details.jsp */ HtmlNext path_AdminFailureurl_AdminFailureurlDetailsJsp = new HtmlNext("/admin/failureurl/admin_failureurl_details.jsp");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.3K bytes - Viewed (0)