- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 566 for Deleted (0.03 sec)
-
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
} try { Files.delete(f); } catch (final IOException e) { logger.warn("Failed to delete {}", f, e); } }); Files.deleteIfExists(dir); } catch (final IOException e) { logger.warn("Failed to delete {}", dir, e); } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
}); return redirect(getClass()); } /** * Deletes a duplicate host configuration. * * @param form the edit form containing the duplicate host ID to delete * @return HTML response redirecting to the duplicate host list */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
} // DELETE /api/admin/duplicatehost/setting/{id} /** * Deletes a specific duplicate host setting. * * @param id the duplicate host setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java
} /** * Deletes a request header setting by ID. * * @param id the ID of the request header setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/reqheader/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
} /** * Deletes a web authentication setting by ID. * * @param id the ID of the web authentication setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/webauth/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
} // DELETE /api/admin/accesstoken/setting/{id} /** * Deletes an access token setting by ID. * * @param id the access token ID to delete * @return JSON response confirming deletion */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
} /** * Deletes a boost document rule. * @param boostDocumentRule The boost document rule to delete. */ public void delete(final BoostDocumentRule boostDocumentRule) { boostDocumentRuleBhv.delete(boostDocumentRule, op -> op.setRefreshPolicy(Constants.TRUE)); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
}); ComponentUtil.getPathMappingHelper().init(); } /** * Deletes a path mapping. * * @param pathMapping the path mapping to delete */ public void delete(final PathMapping pathMapping) { pathMappingBhv.delete(pathMapping, op -> { op.setRefreshPolicy(Constants.TRUE); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java
})).status(Status.OK).result()); } // DELETE /api/admin/joblog/log/{id} /** * Deletes a specific job log. * Useful for cleaning up old job execution records. * * @param id the job log ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$log(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java
} // DELETE /api/admin/fileconfig/setting/{id} /** * Deletes a specific file configuration setting. * * @param id the file configuration setting ID to delete * @return JSON response with deletion status */ @Execute public JsonResponse<ApiResult> delete$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0)