ru.yandex.qatools.allure.data.Host Maven / Gradle / Ivy
package ru.yandex.qatools.allure.data;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for host complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="host">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="threads" type="{urn:data.allure.qatools.yandex.ru}threads" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "host", propOrder = {
})
public class Host {
@XmlElement(required = true)
protected String title;
@XmlElementWrapper(name = "threads")
@XmlElement(name = "thread")
protected List threads;
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
public List getThreads() {
if (threads == null) {
threads = new ArrayList();
}
return threads;
}
public void setThreads(List threads) {
this.threads = threads;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy