Class UploadForm

java.lang.Object
org.codelibs.fess.app.web.admin.design.UploadForm

public class UploadForm extends Object
Form for uploading design files to customize the appearance of the Fess search interface. This form is used in the admin interface to upload CSS, JSP, and other design-related files that customize the look and feel of the search application.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    @Required org.lastaflute.web.ruts.multipart.MultipartFormFile
    The multipart file containing design resources to be uploaded.
    @Pattern(regexp="^[^\\\\|/|:|\\*|?|\"|<|>|\\|]+$",message="{errors.design_file_name_is_invalid}") String
    The name for the design file being 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

    • designFile

      @Required public @Required org.lastaflute.web.ruts.multipart.MultipartFormFile designFile
      The multipart file containing design resources to be uploaded. This can include CSS files, JSP templates, images, or other design assets.
    • designFileName

      @Pattern(regexp="^[^\\\\|/|:|\\*|?|\"|<|>|\\|]+$", message="{errors.design_file_name_is_invalid}") public @Pattern(regexp="^[^\\\\|/|:|\\*|?|\"|<|>|\\|]+$",message="{errors.design_file_name_is_invalid}") String designFileName
      The name for the design file being uploaded. Must not contain invalid file system characters like backslash, colon, asterisk, etc.
  • Constructor Details

    • UploadForm

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