Class EditForm
java.lang.Object
org.codelibs.fess.app.web.admin.scheduler.CreateForm
org.codelibs.fess.app.web.admin.scheduler.EditForm
- Direct Known Subclasses:
EditBody
Form class for editing scheduled job configurations in the admin interface.
This form extends CreateForm to include fields necessary for updating existing scheduler entries,
including tracking information for optimistic locking.
Schedulers define automated jobs such as crawling and system maintenance tasks.
-
Field Summary
FieldsModifier and TypeFieldDescription@Required @Size(max=1000) StringThe unique identifier of the scheduler being edited.@Required IntegerThe version number of the scheduler for optimistic locking.Fields inherited from class org.codelibs.fess.app.web.admin.scheduler.CreateForm
available, crawler, createdBy, createdTime, cronExpression, crudMode, jobLogging, name, scriptData, scriptType, sortOrder, target -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.codelibs.fess.app.web.admin.scheduler.CreateForm
initialize
-
Field Details
-
id
The unique identifier of the scheduler being edited. This is a required field for identifying which scheduler to update. -
versionNo
The version number of the scheduler for optimistic locking. This field is required to prevent concurrent modification conflicts by ensuring the scheduler hasn't been modified by another process.
-
-
Constructor Details
-
EditForm
public EditForm()Creates a new EditForm instance.
-