- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 30 for dictionaryManager (0.07 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/AdminDictAction.java
// ========= /** The dictionary manager. */ @Resource protected DictionaryManager dictionaryManager; // =================================================================================== // HookCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
} } }; systemHelper.init(); ComponentUtil.register(systemHelper, "systemHelper"); // Initialize DictionaryManager mock dictionaryManager = new DictionaryManager() { @Override public CurlResponse getContentResponse(org.codelibs.fess.dict.DictionaryFile<?> file) { try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
* Default constructor. */ public ProtwordsService() { // Default constructor } /** Dictionary manager for handling dictionary files */ @Resource protected DictionaryManager dictionaryManager; /** Configuration for Fess */ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of protected words items. * @param dictId the dictionary IDCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
*/ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Loaded {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } /** * Creates a new {@link StemmerOverrideFile} instance. * * @param id The unique identifier for the dictionary file.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
*/ public class StemmerOverrideService { /** Dictionary manager for accessing dictionary files. */ @Resource protected DictionaryManager dictionaryManager; /** Fess configuration for accessing system settings. */ @Resource protected FessConfig fessConfig; /** * Default constructor. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
* 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; /** * Constructs a new stopwords service. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
* 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; /** * Constructs a new synonym service. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
*/ public CharMappingService() { // Default constructor } /** * Dictionary manager for accessing and managing dictionary files. */ @Resource protected DictionaryManager dictionaryManager; /** * Fess configuration settings. */ @Resource protected FessConfig fessConfig; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 6.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
*/ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Loaded {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } /** * Creates a new {@link StopwordsFile} instance. * * @param id The unique identifier for the dictionary file.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java
logger.info("Loaded {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new ProtwordsFile(id, path, timestamp).manager(dictionaryManager); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2K bytes - Click Count (0)