java.lang.Object
org.codelibs.fess.app.web.api.admin.storage.UploadForm

public class UploadForm extends Object
Form for uploading files to the storage system via the admin API. This form is used in the admin API interface to upload files to the storage backend with optional path specification for file organization.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    @Required org.lastaflute.web.ruts.multipart.MultipartFormFile
    The multipart file to be uploaded to the storage system.
    The storage path where the file should be uploaded.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default constructor for UploadForm.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • path

      public String path
      The storage path where the file should be uploaded. If not specified, the file will be stored in the default location.
    • file

      @Required public @Required org.lastaflute.web.ruts.multipart.MultipartFormFile file
      The multipart file to be uploaded to the storage system. This file will be stored in the specified path or default location.
  • Constructor Details

    • UploadForm

      public UploadForm()
      Default constructor for UploadForm. Creates a new instance with default values.