Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ItemForm (0.06 sec)

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

     * This form handles file upload and management operations for storage items.
     */
    public class ItemForm {
    
        /** The path of the storage item */
        public String path;
    
        /**
         * Default constructor.
         */
        public ItemForm() {
            // Default constructor
        }
    
        /** The name of the storage item, limited to 100 characters */
        @Size(max = 100)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

         * @return HTML response redirecting to the storage list after upload
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse upload(final ItemForm form) {
            validate(form, messages -> {}, () -> asListHtml(form.path));
            if (form.uploadFile == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
Back to top