Class CreateForm

java.lang.Object
org.codelibs.fess.app.web.admin.scheduler.CreateForm
Direct Known Subclasses:
CreateBody, EditForm

public class CreateForm extends Object
The create form for Scheduler.
  • Field Details

    • crudMode

      @ValidateTypeFailure public Integer crudMode
      The CRUD mode for the form.
    • name

      @Required @Size(max=100) public @Required @Size(max=100) String name
      The name of the scheduled job.
    • target

      @Required @Size(max=100) public @Required @Size(max=100) String target
      The target class for the scheduled job.
    • cronExpression

      @Size(max=100) @CronExpression public @Size(max=100) String cronExpression
      The cron expression defining when the job should run.
    • scriptType

      @Required @Size(max=100) public @Required @Size(max=100) String scriptType
      The type of script for the scheduled job.
    • scriptData

      @CustomSize(maxKey="form.admin.max.input.size") public String scriptData
      The script data or code for the scheduled job.
    • crawler

      public String crawler
      Whether this job is related to crawling.
    • jobLogging

      public String jobLogging
      Whether job logging is enabled.
    • available

      public String available
      Whether the scheduled job is available/enabled.
    • sortOrder

      @Required @Min(0L) @Max(2147483647L) @ValidateTypeFailure public @Required @Min(0L) @Max(2147483647L) Integer sortOrder
      The sort order for displaying this scheduled job.
    • createdBy

      @Size(max=1000) public @Size(max=1000) String createdBy
      The username of who created this scheduled job.
    • createdTime

      @ValidateTypeFailure public Long createdTime
      The timestamp when this scheduled job was created.
  • Constructor Details

    • CreateForm

      public CreateForm()
      Creates a new CreateForm instance.
  • Method Details

    • initialize

      public void initialize()
      Initializes the form with default values for creating a new scheduled job.