de.elnarion.xwiki.rest.model.jaxb.JobProgress Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.04.18 at 06:54:28 PM CEST
//
package de.elnarion.xwiki.rest.model.jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* 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>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "JobProgress", propOrder = {
"offset",
"currentLevelOffset"
})
public class JobProgress {
protected double offset;
protected double currentLevelOffset;
/**
* Gets the value of the offset property.
*
*/
public double getOffset() {
return offset;
}
/**
* Sets the value of the offset property.
*
*/
public void setOffset(double value) {
this.offset = value;
}
/**
* Gets the value of the currentLevelOffset property.
*
*/
public double getCurrentLevelOffset() {
return currentLevelOffset;
}
/**
* Sets the value of the currentLevelOffset property.
*
*/
public void setCurrentLevelOffset(double value) {
this.currentLevelOffset = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy