Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addSuccessUploadFileToStorage (0.18 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

            }
            final String fileName = form.file.getFileName();
            try {
                uploadObject(getObjectName(form.path, fileName), form.file);
                saveInfo(messages -> messages.addSuccessUploadFileToStorage(GLOBAL, fileName));
                return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result());
            } catch (final StorageException e) {
                logger.warn("Failed to upload {}", fileName, e);
    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 addSuccessUploadFileToStorage(String property, String arg0) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(SUCCESS_upload_file_to_storage, 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