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 double
currentLevelOffset
protected double
offset
-
Constructor Summary
Constructors Constructor Description JobProgress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getCurrentLevelOffset()
Gets the value of the currentLevelOffset property.double
getOffset()
Gets the value of the offset property.void
setCurrentLevelOffset(double value)
Sets the value of the currentLevelOffset property.void
setOffset(double value)
Sets the value of the offset property.JobProgress
withCurrentLevelOffset(double value)
JobProgress
withOffset(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)
-
-