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

public class EditForm extends CreateForm
Form class for editing protected words dictionary entries in the admin interface. This form extends CreateForm to include fields necessary for updating existing protected words entries. Protected words are terms that should not be stemmed or modified during text analysis.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    @Required Long
    The unique identifier of the protected words dictionary entry being edited.

    Fields inherited from class org.codelibs.fess.app.web.admin.dict.protwords.CreateForm

    crudMode, dictId, input
  • Constructor Summary

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

    Modifier and Type
    Method
    Description
    Returns a display-friendly identifier combining the dictionary ID and entry ID.

    Methods inherited from class org.codelibs.fess.app.web.admin.dict.protwords.CreateForm

    initialize

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • id

      @Required @ValidateTypeFailure public @Required Long id
      The unique identifier of the protected words dictionary entry being edited. This is a required field for identifying which dictionary entry to update.
  • Constructor Details

    • EditForm

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

    • getDisplayId

      public String getDisplayId()
      Returns a display-friendly identifier combining the dictionary ID and entry ID. This method creates a composite identifier for UI display purposes.
      Returns:
      A string in the format "dictId:id" for display purposes