- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for addErrorsFileIsNotSupported (0.12 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
if (tempFile.exists() && !tempFile.delete()) { logger.warn("Failed to delete {}.", tempFile.getAbsolutePath()); } throwValidationError(messages -> messages.addErrorsFileIsNotSupported(GLOBAL, fileName), this::asListHtml); } saveInfo(messages -> messages.addSuccessBulkProcessStarted(GLOBAL)); return redirect(getClass()); // no-op }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
} if (!form.jarFile.getFileName().endsWith(".jar")) { throwValidationError(messages -> messages.addErrorsFileIsNotSupported(GLOBAL, form.jarFile.getFileName()), this::asListHtml); } final String filename = form.jarFile.getFileName();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
* </pre> * @param property The property name for the message. (NotNull) * @param arg0 The parameter arg0 for message. (NotNull) * @return this. (NotNull) */ public FessMessages addErrorsFileIsNotSupported(String property, String arg0) { assertPropertyNotNull(property); add(property, new UserMessage(ERRORS_file_is_not_supported, arg0)); return this; } /**
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 119.9K bytes - Viewed (0)