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

public class CreateForm extends Object
Form class for creating protected words dictionary entries. Protected words are terms that should not be modified or analyzed during text processing, preserving their original form in search indexes.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    CRUD operation mode (CREATE, EDIT, etc.)
    @Required String
    Dictionary identifier
    @Required @Size(max=1000) String
    Word or phrase to be protected from analysis
  • 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 protected words 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
      Dictionary identifier
    • crudMode

      @ValidateTypeFailure public Integer crudMode
      CRUD operation mode (CREATE, EDIT, etc.)
    • input

      @Required @Size(max=1000) public @Required @Size(max=1000) String input
      Word or phrase to be protected from analysis
  • 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 protected words entry.