Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for synonym (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/service/SynonymService.java

    import org.codelibs.fess.dict.DictionaryManager;
    import org.codelibs.fess.dict.synonym.SynonymFile;
    import org.codelibs.fess.dict.synonym.SynonymItem;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service for managing synonyms.
     * This class provides methods to interact with synonym dictionaries,
     * including retrieving, storing, and deleting synonyms.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

        }
    
        /**
         * Retrieves a specific synonym dictionary item by ID.
         *
         * @param dictId the dictionary ID
         * @param id the ID of the synonym item to retrieve
         * @return JSON response containing the synonym dictionary item
         */
        // GET /api/admin/dict/synonym/setting/{dictId}/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                    form.dictId = dictId;
                });
            });
        }
    
        /**
         * Displays the form for editing an existing synonym item.
         *
         * @param form the edit form containing synonym item data
         * @return HTML response for the edit synonym form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse edit(final EditForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  4. src/test/java/org/codelibs/fess/dict/synonym/SynonymCreatorTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.dict.synonym;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class SynonymCreatorTest extends UnitFessTestCase {
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            assertEquals("/admin/dict/kuromoji/admin_dict_kuromoji.jsp",
                    FessHtmlPath.path_AdminDictKuromoji_AdminDictKuromojiJsp.getRoutingPath());
            assertEquals("/admin/dict/synonym/admin_dict_synonym.jsp", FessHtmlPath.path_AdminDictSynonym_AdminDictSynonymJsp.getRoutingPath());
            assertEquals("/admin/dict/stopwords/admin_dict_stopwords.jsp",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Manager class for handling dictionary files in the Fess search system.
     * This class provides functionality to retrieve, store, and manage various
     * dictionary files such as synonyms, kuromoji, protwords, and stopwords.
     * It coordinates with DictionaryCreator instances to handle different
     * dictionary types and manages file synchronization through ConfigSync.
     *
     */
    public class DictionaryManager {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top