Class JobRequest


  • public class JobRequest
    extends Object

    Java class for JobRequest complex type.

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

     <complexType name="JobRequest">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element name="id" type="{http://www.xwiki.org}JobId" minOccurs="0"/>
             <element name="interactive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
             <element name="remote" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
             <element name="verbose" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
             <element name="statusSerialized" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
             <element name="statusLogIsolated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
             <element name="property" type="{http://www.xwiki.org}MapEntry" maxOccurs="unbounded" minOccurs="0"/>
           </sequence>
         </restriction>
       </complexContent>
     </complexType>
     
    • Field Detail

      • interactive

        protected boolean interactive
      • remote

        protected boolean remote
      • verbose

        protected boolean verbose
      • statusSerialized

        protected Boolean statusSerialized
      • statusLogIsolated

        protected Boolean statusLogIsolated
    • Constructor Detail

      • JobRequest

        public JobRequest()
    • Method Detail

      • getId

        public JobId getId()
        Gets the value of the id property.
        Returns:
        possible object is JobId
      • setId

        public void setId​(JobId value)
        Sets the value of the id property.
        Parameters:
        value - allowed object is JobId
      • isInteractive

        public boolean isInteractive()
        Gets the value of the interactive property.
      • setInteractive

        public void setInteractive​(boolean value)
        Sets the value of the interactive property.
      • isRemote

        public boolean isRemote()
        Gets the value of the remote property.
      • setRemote

        public void setRemote​(boolean value)
        Sets the value of the remote property.
      • isVerbose

        public boolean isVerbose()
        Gets the value of the verbose property.
      • setVerbose

        public void setVerbose​(boolean value)
        Sets the value of the verbose property.
      • isStatusSerialized

        public Boolean isStatusSerialized()
        Gets the value of the statusSerialized property.
        Returns:
        possible object is Boolean
      • setStatusSerialized

        public void setStatusSerialized​(Boolean value)
        Sets the value of the statusSerialized property.
        Parameters:
        value - allowed object is Boolean
      • isStatusLogIsolated

        public Boolean isStatusLogIsolated()
        Gets the value of the statusLogIsolated property.
        Returns:
        possible object is Boolean
      • setStatusLogIsolated

        public void setStatusLogIsolated​(Boolean value)
        Sets the value of the statusLogIsolated property.
        Parameters:
        value - allowed object is Boolean
      • getProperties

        public List<MapEntry> getProperties()
        Gets the value of the properties 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 JAXB object. This is why there is not a set method for the properties property.

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

            getProperties().add(newItem);
         

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

      • withInteractive

        public JobRequest withInteractive​(boolean value)
      • withRemote

        public JobRequest withRemote​(boolean value)
      • withVerbose

        public JobRequest withVerbose​(boolean value)