schedulerJobInfo Data Type

POJO to represent the job table in the database.

Namespace
uri:lens:job:0.1
Schema
ns1.xsd
Properties
name data type type namespace min/max occurs description
createdOn long element ns1 1/1 time when this job was submitted.
id schedulerJobHandle element ns1 0/1 ID of the job. Each job has a unique id which can be used to query it.
job x_job element ns1 0/1 Definition of the job scheduled.
jobState schedulerJobState element ns1 0/1 current status of this job
modifiedOn long element ns1 1/1 last modified time for this job
userName string element ns1 0/1 name of the user who scheduled this job.

Example

<schedulerJobInfo xmlns="uri:lens:job:0.1">
  <id>
    <handleId>...</handleId>
  </id>
  <job>
    <name>...</name>
    <execution>
      <session/>
      <query/>
    </execution>
    <trigger>
      <frequency/>
    </trigger>
    <job_conf>
      <key>...</key>
      <value>...</value>
    </job_conf>
    <start_time>...</start_time>
    <end_time>...</end_time>
  </job>
  <userName>...</userName>
  <jobState>...</jobState>
  <createdOn>...</createdOn>
  <modifiedOn>...</modifiedOn>
</schedulerJobInfo>