Class EditForm
java.lang.Object
org.codelibs.fess.app.web.admin.fileauth.CreateForm
org.codelibs.fess.app.web.admin.fileauth.EditForm
- Direct Known Subclasses:
EditBody
Form class for editing file authentication configurations in the admin interface.
This form extends CreateForm to include fields necessary for updating existing file authentication entries,
including tracking information for optimistic locking and audit trails.
File authentication configurations define access control for file system crawling operations.
-
Field Summary
FieldsModifier and TypeFieldDescription@Required @Size(max=1000) StringThe unique identifier of the file authentication configuration being edited.@Size(max=255) StringThe username of the user who last updated this file authentication configuration.The timestamp when this file authentication configuration was last updated.@Required IntegerThe version number of the file authentication configuration for optimistic locking.Fields inherited from class org.codelibs.fess.app.web.admin.fileauth.CreateForm
createdBy, createdTime, crudMode, fileConfigId, hostname, parameters, password, port, protocolScheme, username -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.codelibs.fess.app.web.admin.fileauth.CreateForm
initialize
-
Field Details
-
id
The unique identifier of the file authentication configuration being edited. This is a required field for identifying which file authentication entry to update. -
updatedBy
The username of the user who last updated this file authentication configuration. Used for audit trail purposes to track who made changes. Maximum length is 255 characters. -
updatedTime
The timestamp when this file authentication 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 file authentication 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.
-