Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for asDownloadHtml (0.48 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java

            saveToken();
            return asDownloadHtml();
        }
    
        /**
         * Download the bad words.
         * @param form The download form.
         * @return The action response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final DownloadForm form) {
            verifyToken(this::asDownloadHtml);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 18K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

         *
         * @return HTML response for the download page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse downloadpage() {
            saveToken();
            return asDownloadHtml();
        }
    
        /**
         * Downloads elevate words data as a CSV file.
         *
         * @param form download form with export options
         * @return streaming response containing CSV data
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
Back to Top