java.lang.Object
org.codelibs.fess.app.web.admin.dict.stopwords.CreateForm
Direct Known Subclasses:
CreateBody, EditForm

public class CreateForm extends Object
Form class for creating new stopwords dictionary entries. This form handles the creation of stopwords that should be excluded from search indexing and analysis.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    The CRUD operation mode for form processing
    @Required String
    The dictionary ID to which this stopword entry belongs
    @Required @Size(max=1000) String
    The stopword to be added to the dictionary
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new CreateForm instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Initializes the form with default values for creating a new stopword entry.

    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 to which this stopword entry belongs
    • crudMode

      @ValidateTypeFailure public Integer crudMode
      The CRUD operation mode for form processing
    • input

      @Required @Size(max=1000) public @Required @Size(max=1000) String input
      The stopword to be added to the dictionary
  • Constructor Details

    • CreateForm

      public CreateForm()
      Creates a new CreateForm instance.
  • Method Details

    • initialize

      public void initialize()
      Initializes the form with default values for creating a new stopword entry.