Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for DownloadForm (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/DownloadForm.java

     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the protected words dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/elevateword/DownloadForm.java

    /**
     * The download form for Elevate Word.
     * This form is used for downloading elevate word configurations from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 963 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/DownloadForm.java

     * This form is used for downloading Kuromoji dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the Kuromoji dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/DownloadForm.java

     * This form is used for downloading mapping dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the mapping dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/DownloadForm.java

     * This form is used for downloading synonym dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the synonym dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/badword/DownloadForm.java

     */
    package org.codelibs.fess.app.web.admin.badword;
    
    /**
     * The download form for Bad Word.
     *
     */
    public class DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 864 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/DownloadForm.java

     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the stemmer override dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/DownloadForm.java

     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the stop words dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/DownloadBody.java

    import org.codelibs.fess.app.web.admin.dict.mapping.DownloadForm;
    
    /**
     * Download body for mapping dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading mapping dictionaries via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/DownloadBody.java

    import org.codelibs.fess.app.web.admin.dict.stemmeroverride.DownloadForm;
    
    /**
     * Download body for stemmer override dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading stemmer override dictionaries via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top