java.lang.Object
org.codelibs.fess.app.web.admin.dict.mapping.UploadForm

public class UploadForm extends Object
Form for uploading character mapping files to the Fess search engine. Character mapping allows for normalization and transformation of characters during text analysis. This form is used in the admin interface to upload custom character mapping dictionary files.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    @Required org.lastaflute.web.ruts.multipart.MultipartFormFile
    The multipart file containing the character mapping rules to be uploaded.
    @Required String
    The dictionary ID that identifies which character mapping dictionary configuration to update.
  • 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

    • dictId

      @Required public @Required String dictId
      The dictionary ID that identifies which character mapping dictionary configuration to update. This ID corresponds to a specific character mapping dictionary instance in the system.
    • charMappingFile

      @Required public @Required org.lastaflute.web.ruts.multipart.MultipartFormFile charMappingFile
      The multipart file containing the character mapping rules to be uploaded. This file should contain character mapping definitions for text normalization.
  • Constructor Details

    • UploadForm

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