Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 22 of 22 for delete$all (0.04 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

        }
    
        /**
         * Deletes all job logs.
         *
         * @return HTML response after deletion
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse deleteall() {
            verifyToken(this::asListHtml);
            final List<String> jobStatusList = new ArrayList<>();
            jobStatusList.add(Constants.OK);
            jobStatusList.add(Constants.FAIL);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

         *
         * @param form the list form containing search criteria
         * @return HTML response redirecting to the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse deleteall(final ListForm form) {
            validate(form, messages -> {}, this::asListHtml);
            verifyToken(this::asListHtml);
            try {
                searchHelper.deleteByQuery(request, form);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 25.5K bytes
    - Click Count (1)
Back to Top