- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 1,099 for Deleted (0.12 sec)
-
src/main/java/org/codelibs/fess/app/service/RoleService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Deletes a role. * @param role The role to delete. */ public void delete(final Role role) { ComponentUtil.getLdapManager().delete(role); roleBhv.delete(role, 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.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
}); } } } /** * Deletes an elevate word from the system. * * @param elevateWord the elevate word entity to delete */ public void delete(final ElevateWord elevateWord) { elevateWordBhv.delete(elevateWord, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
// Confirm // ------- /** * Deletes a single document from the search index. * * @param form the delete form containing document ID * @return HTML response redirecting to the list page */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final DeleteForm form) { validate(form, messages -> {}, this::asListHtml);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
}); } /** * Deletes a group from both LDAP and the database, and removes the group * association from all users that belong to this group. * * @param group the group entity to delete */ public void delete(final Group group) { ComponentUtil.getLdapManager().delete(group); groupBhv.delete(group, op -> { op.setRefreshPolicy(Constants.TRUE);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
saveToken(); return asListHtml(); } /** * Deletes the specified plugin. * * @param form the delete form containing plugin information * @return HTML response redirecting to the plugin list */ @Execute @Secured({ ROLE }) public HtmlResponse delete(final DeleteForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
return null; })).status(Status.OK).result()); } // DELETE /api/admin/failureurl/log/{id} /** * Deletes a failure URL log by ID. * * @param id the failure URL log ID to delete * @return JSON response with result status */ @Execute public JsonResponse<ApiResult> delete$log(final String id) { failureUrlService.getFailureUrl(id).ifPresent(entity -> {
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/crawlinginfo/ApiAdminCrawlinginfoAction.java
})).status(Status.OK).result()); } /** * Deletes a specific crawling info log by ID. * * @param id the ID of the crawling info log to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/crawlinginfo/log/{id} @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 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Deletes a specific job log from the database. * * @param jobLog the job log to delete */ public void delete(final JobLog jobLog) { jobLogBhv.delete(jobLog, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
} /** * Deletes a user setting by ID. * * @param id the ID of the user setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/user/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { final User entity = userService.getUser(id).orElseGet(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java
/** * Updates an existing user in the authentication chain. * @param user The user to update. */ void update(User user); /** * Deletes a user from the authentication chain. * @param user The user to delete. */ void delete(User user); /** * Changes the password for the specified user. * @param username The username for which to change the password.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)