Class EditForm
java.lang.Object
org.codelibs.fess.app.web.admin.badword.CreateForm
org.codelibs.fess.app.web.admin.badword.EditForm
- Direct Known Subclasses:
EditBody
Form class for editing bad words in the admin interface.
This form extends CreateForm to include fields necessary for updating existing bad word entries,
including tracking information for optimistic locking and audit trails.
Bad words are terms that should be filtered or blocked in search results.
-
Field Summary
FieldsModifier and TypeFieldDescription@Required @Size(max=1000) StringThe unique identifier of the bad word entry being edited.@Size(max=1000) StringThe username of the user who last updated this bad word entry.The timestamp when this bad word entry was last updated.@Required LongThe version number of the bad word entry for optimistic locking.Fields inherited from class org.codelibs.fess.app.web.admin.badword.CreateForm
createdBy, createdTime, crudMode, suggestWord -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.codelibs.fess.app.web.admin.badword.CreateForm
initialize
-
Field Details
-
id
The unique identifier of the bad word entry being edited. This is a required field for identifying which bad word to update. -
updatedBy
The username of the user who last updated this bad word entry. Used for audit trail purposes to track who made changes. -
updatedTime
The timestamp when this bad word entry was last updated. Stored as a long value representing milliseconds since epoch. Used for audit trail and concurrency control. -
versionNo
The version number of the bad word entry for optimistic locking. This field is required to prevent concurrent modification conflicts by ensuring the entry hasn't been modified by another process.
-
-
Constructor Details
-
EditForm
public EditForm()Creates a new EditForm instance.
-