- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getCharMappingItem (0.08 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java
@Execute public JsonResponse<ApiResult> get$setting(final String dictId, final long id) { return asJson(new ApiResult.ApiConfigResponse() .setting(charMappingService.getCharMappingItem(dictId, id).map(entity -> createEditBody(entity, dictId)).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, String.valueOf(id)));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
* @param id the unique identifier of the character mapping item * @return an OptionalEntity containing the character mapping item if found, empty otherwise */ public OptionalEntity<CharMappingItem> getCharMappingItem(final String dictId, final long id) { return getCharMappingFile(dictId).map(file -> file.get(id).get()); } /** * Stores a character mapping item in the specified dictionary. * <p>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0)