- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for failureUrl (0.46 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/FailureUrl.java
*/ package org.codelibs.fess.opensearch.config.exentity; import org.codelibs.fess.opensearch.config.bsentity.BsFailureUrl; /** * @author FreeGen */ public class FailureUrl extends BsFailureUrl { private static final long serialVersionUID = 1L; public String getId() { return asDocMeta().id(); } public void setId(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.5K 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) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFailureUrlBhv.java
return createOptionalEntity(doSelectByPK(id, tp), id); } @Override protected Class<? extends FailureUrl> typeOfSelectedEntity() { return FailureUrl.class; } @Override protected Class<FailureUrl> typeOfHandlingEntity() { return FailureUrl.class; } @Override protected Class<FailureUrlCB> typeOfHandlingConditionBean() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.7K 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
@Override public ListResultBean<FailureUrl> selectList(final CBCall<FailureUrlCB> cbLambda) { cbLambda.callback(cb); final ListResultBean<FailureUrl> list = new ListResultBean<>(); for (int i = 0; i < errorCount.get(); i++) { FailureUrl failureUrl = new FailureUrl(); failureUrl.setId("E" + i);
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/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp
<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="log"/> <jsp:param name="menuType" value="failureUrl"/> </jsp:include> <div class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 10.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 13.3K 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)