Package org.xwiki.rest.model.jaxb
Class JobProgress
- java.lang.Object
-
- org.xwiki.rest.model.jaxb.JobProgress
-
public class JobProgress extends Object
Java class for JobProgress complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="JobProgress"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="offset" type="{http://www.w3.org/2001/XMLSchema}double"/> <element name="currentLevelOffset" type="{http://www.w3.org/2001/XMLSchema}double"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected doublecurrentLevelOffsetprotected doubleoffset
-
Constructor Summary
Constructors Constructor Description JobProgress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetCurrentLevelOffset()Gets the value of the currentLevelOffset property.doublegetOffset()Gets the value of the offset property.voidsetCurrentLevelOffset(double value)Sets the value of the currentLevelOffset property.voidsetOffset(double value)Sets the value of the offset property.JobProgresswithCurrentLevelOffset(double value)JobProgresswithOffset(double value)
-
-
-
Method Detail
-
getOffset
public double getOffset()
Gets the value of the offset property.
-
setOffset
public void setOffset(double value)
Sets the value of the offset property.
-
getCurrentLevelOffset
public double getCurrentLevelOffset()
Gets the value of the currentLevelOffset property.
-
setCurrentLevelOffset
public void setCurrentLevelOffset(double value)
Sets the value of the currentLevelOffset property.
-
withOffset
public JobProgress withOffset(double value)
-
withCurrentLevelOffset
public JobProgress withCurrentLevelOffset(double value)
-
-