Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addErrorsStorageFileDownloadFailure (0.17 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

                } catch (final StorageException e) {
                    logger.warn("Failed to download {}", id, e);
                    throwValidationErrorApi(messages -> messages.addErrorsStorageFileDownloadFailure(GLOBAL, pi.getName()));
                }
            });
        }
    
        // DELETE /api/admin/storage/delete/{id}/
        /**
         * Deletes a file from storage.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * @param property The property name for the message. (NotNull)
         * @param arg0 The parameter arg0 for message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addErrorsStorageFileDownloadFailure(String property, String arg0) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(ERRORS_storage_file_download_failure, arg0));
            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)
Back to Top