- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 53 for synonym (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/SearchBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.dict.synonym; import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody; /** * Search request body for synonym dictionary administration. * Extends BaseSearchDictBody with synonym dictionary-specific search parameters. */ public class SearchBody extends BaseSearchDictBody { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
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) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
public class SynonymFile extends DictionaryFile<SynonymItem> { private static final String SYNONYM = "synonym"; /** The list of synonym items loaded from the dictionary file. */ List<SynonymItem> synonymItemList; /** * Constructs a new synonym file. * * @param id The unique identifier for this dictionary file. * @param path The path to the dictionary file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
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) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# If you want to include other object types in generating target, # you should specify the list of included object types as adding. # e.g. Synonym of Oracle --> list:{TABLE ; VIEW ; SYNONYM} # This is only for the main schema. Additional schemas are unconcerned. # However ReplaceSchema and Sql2Entity task also uses this.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
HtmlNext path_AdminDictSynonym_AdminDictSynonymDownloadJsp = new HtmlNext("/admin/dict/synonym/admin_dict_synonym_download.jsp"); /** The path of the HTML: /admin/dict/synonym/admin_dict_synonym_edit.jsp */ HtmlNext path_AdminDictSynonym_AdminDictSynonymEditJsp = new HtmlNext("/admin/dict/synonym/admin_dict_synonym_edit.jsp");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/DownloadForm.java
*/ package org.codelibs.fess.app.web.admin.dict.synonym; import org.lastaflute.web.validation.Required; /** * The download form for synonym dictionary. * 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
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/DownloadBody.java
*/ package org.codelibs.fess.app.web.api.admin.dict.synonym; import org.codelibs.fess.app.web.admin.dict.synonym.DownloadForm; /** * Download body for synonym dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading synonym dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/dict/SynonymTests.java
private static final String NAME_PREFIX = "synonymTest_"; private static final String API_PATH = "/api/admin/dict/synonym"; private static final String LIST_ENDPOINT_SUFFIX = "settings"; private static final String ITEM_ENDPOINT_SUFFIX = "setting"; private static final String DICT_TYPE = "synonym"; private static final String KEY_PROPERTY = "inputs"; @Override protected String getNamePrefix() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SynonymPager.java
import org.codelibs.fess.util.ComponentUtil; /** * Pager for managing synonym pagination. * This class handles the state and logic for paginating through a list of synonyms, * including total record count, page size, and current page number. */ public class SynonymPager implements Serializable { /** * Constructs a new pager for synonyms. */ public SynonymPager() { // do nothing }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0)