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