Class EditForm

java.lang.Object
org.codelibs.fess.app.web.admin.joblog.EditForm
Direct Known Subclasses:
EditBody

public class EditForm extends Object
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 Details

    • crudMode

      @ValidateTypeFailure public int crudMode
      The CRUD operation mode for this form. Indicates whether this is a create, read, update, or delete operation.
    • id

      @Required @ValidateTypeFailure public @Required String id
      The unique identifier of the job log entry being edited. This is a required field for identifying which job log to update.
    • jobName

      @Required public @Required String jobName
      The name of the job that was executed. This is a required field identifying the specific job type.
    • jobStatus

      @Required public @Required String jobStatus
      The execution status of the job. This is a required field indicating success, failure, or running status.
    • target

      @Required public @Required String target
      The target or scope of the job execution. This is a required field describing what the job operated on.
    • scriptType

      @Required public @Required String scriptType
      The type of script that was executed for this job. This is a required field indicating the script engine or type used.
    • scriptData

      public String scriptData
      The script data or code that was executed. This field contains the actual script content that was run.
    • scriptResult

      public String scriptResult
      The result or output from the script execution. This field contains any output or result data from the script.
    • startTime

      @Required public @Required String startTime
      The timestamp when the job started execution. This is a required field indicating when the job began.
    • endTime

      public String 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.