Class UploadForm
java.lang.Object
org.codelibs.fess.app.web.admin.dict.stopwords.UploadForm
Form for uploading stopwords files to the Fess search engine.
Stopwords are common words that should be ignored during search indexing and querying.
This form is used in the admin interface to upload custom stopwords dictionary files.
-
Field Summary
FieldsModifier and TypeFieldDescription@Required StringThe dictionary ID that identifies which stopwords dictionary configuration to update.@Required org.lastaflute.web.ruts.multipart.MultipartFormFileThe multipart file containing the stopwords to be uploaded. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
dictId
The dictionary ID that identifies which stopwords dictionary configuration to update. This ID corresponds to a specific stopwords dictionary instance in the system. -
stopwordsFile
@Required public @Required org.lastaflute.web.ruts.multipart.MultipartFormFile stopwordsFileThe multipart file containing the stopwords to be uploaded. This file should contain a list of words that should be filtered out during indexing.
-
-
Constructor Details
-
UploadForm
public UploadForm()Default constructor for UploadForm. Creates a new instance with default values.
-