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

public class CreateForm extends Object
Form class for creating new synonym dictionary entries. This form handles the creation of synonym mappings that expand search queries to include related terms.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    The CRUD operation mode for form processing
    @Required String
    The dictionary ID to which this synonym entry belongs
    @Required @Size(max=1000) String
    The input terms that should be considered synonymous
    @Required @Size(max=1000) String
    The output synonyms that should be matched for the input terms
  • 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 synonym 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 synonym entry belongs
    • crudMode

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

      @Required @Size(max=1000) public @Required @Size(max=1000) String inputs
      The input terms that should be considered synonymous
    • outputs

      @Required @Size(max=1000) public @Required @Size(max=1000) String outputs
      The output synonyms that should be matched for the input terms
  • 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 synonym entry.