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

public class UploadForm extends Object
Form for uploading stemmer override files to the Fess search engine. Stemmer override allows custom rules to override the default stemming behavior for specific words. This form is used in the admin interface to upload custom stemmer override dictionary files.
  • Field Summary

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

    • dictId

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

      @Required public @Required org.lastaflute.web.ruts.multipart.MultipartFormFile stemmerOverrideFile
      The multipart file containing the stemmer override rules to be uploaded. This file should contain mappings that override default stemming for specific words.
  • Constructor Details

    • UploadForm

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