Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 176 for word3 (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java

        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            saveToken();
            return asHtml(path_AdminSuggest_AdminSuggestJsp).useForm(SuggestForm.class);
        }
    
        /**
         * Deletes all suggest words from the suggest index.
         *
         * @return HTML response redirecting to the index page
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse deleteAllWords() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/SearchForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * The search form for Protected Words.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The dictionary ID field for protected words dictionary operations.
         */
        @Required
        public String dictId;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/DownloadBody.java

    import org.codelibs.fess.app.web.admin.dict.protwords.DownloadForm;
    
    /**
     * Download body for protected words dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading protected words dictionaries via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
         * 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/api/admin/dict/stopwords/DownloadBody.java

    package org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.admin.dict.stopwords.DownloadForm;
    
    /**
     * Download body for stop words dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading stop words dictionaries via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
         * 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/resources/fess_message_nl.properties

    errors.invalid_query_sort_value = De opgegeven sorteerwaarde {0} is ongeldig.
    errors.invalid_query_unsupported_sort_field = Het opgegeven sorteerveld {0} wordt niet ondersteund.
    errors.invalid_query_unsupported_sort_order = De opgegeven sorteervolgorde {0} wordt niet ondersteund.
    errors.invalid_query_cannot_process=Kan de opgegeven query niet verwerken.
    errors.crud_invalid_mode = Ongeldige modus. (Is {1}, niet {0})
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/EditBody.java

    import org.codelibs.fess.app.web.admin.dict.stopwords.EditForm;
    
    /**
     * Request body class for stop words dictionary edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for stop words dictionary management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * 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)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/DownloadForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * The download form for protected words dictionary.
     * This form is used for downloading protected words dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the protected words dictionary to download.
         */
        @Required
        public String dictId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Ascii.java

       * not specified.)
       *
       * @since 8.0
       */
      public static final byte US = 31;
    
      /**
       * Space: A normally non-printing graphic character used to separate words. It is also a format
       * effector which controls the movement of the printing position, one printing position forward.
       * (Applicable also to display devices.)
       *
       * @since 8.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/BadWordPager.java

    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for bad word management with pagination support.
     * Provides pagination functionality for bad word lists.
     */
    public class BadWordPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /** Default page size for bad word pagination. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/badword/SearchBody.java

    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for bad word administration.
     * Extends BaseSearchBody with bad word-specific search parameters.
     */
    public class SearchBody extends BaseSearchBody {
    
        /** The bad word ID to search for. */
        public String id;
    
        /**
         * Default constructor for SearchBody.
         */
        public SearchBody() {
    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