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

public class UploadForm extends Object
Form for uploading Kuromoji dictionary files to the Fess search engine. Kuromoji is a Japanese morphological analyzer used for tokenizing Japanese text. This form is used in the admin interface to upload custom user dictionaries for Kuromoji.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    @Required String
    The dictionary ID that identifies which Kuromoji dictionary configuration to update.
    @Required org.lastaflute.web.ruts.multipart.MultipartFormFile
    The multipart file containing the Kuromoji user dictionary 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 Kuromoji dictionary configuration to update. This ID corresponds to a specific Kuromoji dictionary instance in the system.
    • kuromojiFile

      @Required public @Required org.lastaflute.web.ruts.multipart.MultipartFormFile kuromojiFile
      The multipart file containing the Kuromoji user dictionary to be uploaded. This file should be in the Kuromoji user dictionary format containing custom word definitions.
  • Constructor Details

    • UploadForm

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