Class EditForm
java.lang.Object
org.codelibs.fess.app.web.admin.group.CreateForm
org.codelibs.fess.app.web.admin.group.EditForm
- Direct Known Subclasses:
EditBody
Form class for editing user groups in the admin interface.
This form extends CreateForm to include fields necessary for updating existing group entries,
including tracking information for optimistic locking and audit trails.
Groups are used to organize users and define access permissions.
-
Field Summary
FieldsModifier and TypeFieldDescription@Required @Size(max=1000) StringThe unique identifier of the group being edited.@Size(max=1000) StringThe username of the user who last updated this group.The timestamp when this group was last updated.@Required IntegerThe version number of the group for optimistic locking.Fields inherited from class org.codelibs.fess.app.web.admin.group.CreateForm
attributes, crudMode, name -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.codelibs.fess.app.web.admin.group.CreateForm
initialize
-
Field Details
-
id
The unique identifier of the group being edited. This is a required field for identifying which group to update. -
updatedBy
The username of the user who last updated this group. Used for audit trail purposes to track who made changes. -
updatedTime
The timestamp when this group 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 group for optimistic locking. This field is required to prevent concurrent modification conflicts by ensuring the group hasn't been modified by another process.
-
-
Constructor Details
-
EditForm
public EditForm()Creates a new EditForm instance.
-