Class JobType

java.lang.Object
com.tremolosecurity.config.xml.JobType

public class JobType extends Object
Configuration for a scheduled job

Java class for jobType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="jobType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="cronSchedule" type="{http://www.tremolosecurity.com/tremoloConfig}cronScheduleType" minOccurs="0"/>
         <element name="param" type="{http://www.tremolosecurity.com/tremoloConfig}paramWithValueType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="className" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="group" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • JobType

      public JobType()
  • Method Details

    • getCronSchedule

      public CronScheduleType getCronSchedule()
      Gets the value of the cronSchedule property.
      Returns:
      possible object is CronScheduleType
    • setCronSchedule

      public void setCronSchedule(CronScheduleType value)
      Sets the value of the cronSchedule property.
      Parameters:
      value - allowed object is CronScheduleType
    • getParam

      public List<ParamWithValueType> getParam()
      Gets the value of the param property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a set method for the param property.

      For example, to add a new item, do as follows:

          getParam().add(newItem);
       

      Objects of the following type(s) are allowed in the list ParamWithValueType

    • getClassName

      public String getClassName()
      Gets the value of the className property.
      Returns:
      possible object is String
    • setClassName

      public void setClassName(String value)
      Sets the value of the className property.
      Parameters:
      value - allowed object is String
    • getName

      public String getName()
      Gets the value of the name property.
      Returns:
      possible object is String
    • setName

      public void setName(String value)
      Sets the value of the name property.
      Parameters:
      value - allowed object is String
    • getGroup

      public String getGroup()
      Gets the value of the group property.
      Returns:
      possible object is String
    • setGroup

      public void setGroup(String value)
      Sets the value of the group property.
      Parameters:
      value - allowed object is String