ru.yandex.qatools.allure.data.DefectsWidgetItem 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
import ru.yandex.qatools.allure.model.Status;
/**
* Java class for defects-widget-item complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="defects-widget-item">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="count" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="uid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="status" type="{urn:data.allure.qatools.yandex.ru}status"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "defects-widget-item", propOrder = {
})
public class DefectsWidgetItem {
protected int count;
@XmlElement(required = true)
protected String uid;
@XmlElement(required = true)
protected String message;
@XmlElement(required = true)
protected Status status;
/**
* Gets the value of the count property.
*
*/
public int getCount() {
return count;
}
/**
* Sets the value of the count property.
*
*/
public void setCount(int value) {
this.count = value;
}
/**
* Gets the value of the uid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUid() {
return uid;
}
/**
* Sets the value of the uid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUid(String value) {
this.uid = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link Status }
*
*/
public Status getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link Status }
*
*/
public void setStatus(Status value) {
this.status = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy