All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.yandex.qatools.allure.data.DefectItem Maven / Gradle / Ivy

There is a newer version: 1.5.4
Show newest version

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;
import ru.yandex.qatools.allure.model.Failure;


/**
 * 

Java class for defect-item complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="defect-item">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="uid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="failure" type="{urn:data.allure.qatools.yandex.ru}failure"/>
 *         <element name="test-cases" type="{urn:data.allure.qatools.yandex.ru}allure-test-cases-info"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "defect-item", propOrder = { }) public class DefectItem { @XmlElement(required = true) protected String uid; @XmlElement(required = true) protected Failure failure; @XmlElementWrapper(name = "test-cases", required = true) @XmlElement(name = "test-case") protected List testCases; /** * 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 failure property. * * @return * possible object is * {@link Failure } * */ public Failure getFailure() { return failure; } /** * Sets the value of the failure property. * * @param value * allowed object is * {@link Failure } * */ public void setFailure(Failure value) { this.failure = value; } public List getTestCases() { if (testCases == null) { testCases = new ArrayList(); } return testCases; } public void setTestCases(List testCases) { this.testCases = testCases; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy