Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 122 for dictionary (0.11 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

        //                                                                           =========
    
        /**
         * Redirect to the dictionary index page.
         *
         * @return HTML response redirecting to the dictionary index
         */
        protected HtmlResponse asDictIndexHtml() {
            return redirect(AdminDictAction.class);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/StopwordsService.java

     * This class provides methods to interact with stopwords dictionaries,
     * including retrieving, storing, and deleting stopwords.
     */
    public class StopwordsService {
        /** The dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** The Fess configuration for accessing system settings. */
        @Resource
        protected FessConfig fessConfig;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/SynonymService.java

     * Service for managing synonyms.
     * This class provides methods to interact with synonym dictionaries,
     * including retrieving, storing, and deleting synonyms.
     */
    public class SynonymService {
        /** The dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** The Fess configuration for accessing system settings. */
        @Resource
        protected FessConfig fessConfig;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/UploadForm.java

     * This form is used in the admin interface to upload custom stemmer override dictionary files.
     */
    public class UploadForm {
    
        /**
         * The dictionary ID that identifies which stemmer override dictionary configuration to update.
         * This ID corresponds to a specific stemmer override dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/EditForm.java

            super();
        }
    
        /**
         * The unique identifier of the stopwords dictionary entry being edited.
         * This is a required field for identifying which dictionary entry to update.
         */
        @Required
        @ValidateTypeFailure
        public Long id;
    
        /**
         * Returns a display-friendly identifier combining the dictionary ID and entry ID.
         * This method creates a composite identifier for UI display purposes.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/ProtwordsService.java

    /**
     * Service for managing protected words dictionary.
     * This service provides operations for managing protected words dictionary files and items.
     */
    public class ProtwordsService {
    
        /**
         * Default constructor.
         */
        public ProtwordsService() {
            // Default constructor
        }
    
        /** Dictionary manager for handling dictionary files */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

        @Resource
        private CharMappingService charMappingService;
    
        /**
         * Retrieve list of character mapping entries for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param body search criteria and paging parameters
         * @return JSON response containing list of mapping entries
         */
        // GET /api/admin/dict/mapping/settings/{dictId}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryItem.java

     */
    package org.codelibs.fess.dict;
    
    /**
     * Abstract base class for all dictionary items in the Fess search system.
     * Dictionary items are used to store entries in various dictionaries such as
     * synonyms, kuromoji, protwords, and stopwords dictionaries.
     *
     */
    public abstract class DictionaryItem {
        /** The unique identifier for this dictionary item */
        protected long id;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/SearchForm.java

    /**
     * The search form for Kuromoji.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The dictionary ID field for Kuromoji 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
    - 1010 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/SearchForm.java

     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The dictionary ID field for stemmer override 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)
Back to top