Class EditForm
java.lang.Object
org.codelibs.fess.app.web.admin.webconfig.CreateForm
org.codelibs.fess.app.web.admin.webconfig.EditForm
- Direct Known Subclasses:
EditBody
Form class for editing web crawling configurations in the admin interface.
This form extends CreateForm to include fields necessary for updating existing web config entries,
including tracking information for optimistic locking and audit trails.
Web configs define how to crawl and index web sites and web applications.
-
Field Summary
FieldsModifier and TypeFieldDescription@Required @Size(max=1000) StringThe unique identifier of the web configuration being edited.@Size(max=1000) StringThe username of the user who last updated this web configuration.The timestamp when this web configuration was last updated.@Required IntegerThe version number of the web configuration for optimistic locking.Fields inherited from class org.codelibs.fess.app.web.admin.webconfig.CreateForm
available, boost, configParameter, createdBy, createdTime, crudMode, depth, description, excludedDocUrls, excludedUrls, includedDocUrls, includedUrls, intervalTime, labelTypeIds, maxAccessCount, name, numOfThread, permissions, sortOrder, urls, userAgent, virtualHosts -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.codelibs.fess.app.web.admin.webconfig.CreateForm
initialize
-
Field Details
-
id
The unique identifier of the web configuration being edited. This is a required field for identifying which web config to update. -
updatedBy
The username of the user who last updated this web configuration. Used for audit trail purposes to track who made changes. -
updatedTime
The timestamp when this web configuration 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 web configuration for optimistic locking. This field is required to prevent concurrent modification conflicts by ensuring the configuration hasn't been modified by another process.
-
-
Constructor Details
-
EditForm
public EditForm()Creates a new EditForm instance.
-