- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for addErrorsStorageFileNotFound (0.12 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
public ActionResponse download(final String id) { final PathInfo pi = convertToItem(id); if (StringUtil.isEmpty(pi.getName())) { throwValidationError(messages -> messages.addErrorsStorageFileNotFound(GLOBAL), () -> asListHtml(encodeId(pi.getPath()))); } final StreamResponse response = new StreamResponse(StringUtil.EMPTY); final String name = pi.getName();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 22.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
* </pre> * @param property The property name for the message. (NotNull) * @return this. (NotNull) */ public FessMessages addErrorsStorageFileNotFound(String property) { assertPropertyNotNull(property); add(property, new UserMessage(ERRORS_storage_file_not_found)); return this; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 126.6K bytes - Click Count (0)