ru.yandex.qatools.allure.data.AllureReportInfo Maven / Gradle / Ivy
package ru.yandex.qatools.allure.data;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for allure-report-info complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="allure-report-info">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="time" type="{http://www.w3.org/2001/XMLSchema}long" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "allure-report-info")
public class AllureReportInfo {
@XmlAttribute(name = "size")
protected Long size;
@XmlAttribute(name = "time")
protected Long time;
/**
* Gets the value of the size property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSize(Long value) {
this.size = value;
}
/**
* Gets the value of the time property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getTime() {
return time;
}
/**
* Sets the value of the time property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setTime(Long value) {
this.time = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy