Class EditForm
java.lang.Object
org.codelibs.fess.app.web.admin.joblog.EditForm
- Direct Known Subclasses:
EditBody
Form class for editing job log entries in the admin interface.
This form handles the editing of system job execution logs,
providing details about scheduled tasks and their execution status.
-
Field Summary
FieldsModifier and TypeFieldDescriptionintThe CRUD operation mode for this form.The timestamp when the job completed execution.@Required StringThe unique identifier of the job log entry being edited.@Required StringThe name of the job that was executed.@Required StringThe execution status of the job.The script data or code that was executed.The result or output from the script execution.@Required StringThe type of script that was executed for this job.@Required StringThe timestamp when the job started execution.@Required StringThe target or scope of the job execution. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidInitializes the form with default null values.
-
Field Details
-
crudMode
@ValidateTypeFailure public int crudModeThe CRUD operation mode for this form. Indicates whether this is a create, read, update, or delete operation. -
id
The unique identifier of the job log entry being edited. This is a required field for identifying which job log to update. -
jobName
The name of the job that was executed. This is a required field identifying the specific job type. -
jobStatus
The execution status of the job. This is a required field indicating success, failure, or running status. -
target
The target or scope of the job execution. This is a required field describing what the job operated on. -
scriptType
The type of script that was executed for this job. This is a required field indicating the script engine or type used. -
scriptData
The script data or code that was executed. This field contains the actual script content that was run. -
scriptResult
The result or output from the script execution. This field contains any output or result data from the script. -
startTime
The timestamp when the job started execution. This is a required field indicating when the job began. -
endTime
The timestamp when the job completed execution. This field indicates when the job finished, if it has completed.
-
-
Constructor Details
-
EditForm
public EditForm()Creates a new EditForm instance.
-
-
Method Details
-
initialize
public void initialize()Initializes the form with default null values. This method resets all fields to their default state for creating a new entry.
-