- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getCharMappingItem (0.1 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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>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/app/web/admin/dict/mapping/AdminDictMappingAction.java
*/ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, () -> asListHtml(form.dictId)); charMappingService.getCharMappingItem(form.dictId, form.id).ifPresent(entity -> { form.inputs = entity.getInputsValue(); form.output = entity.getOutput(); }).orElse(() -> {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 22.3K bytes - Click Count (0) -
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)));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.5K bytes - Click Count (0)