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

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

There is a newer version: 1.5.4
Show newest version

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.XmlElement;
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">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *       <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", propOrder = { "name", "id", "url" }) public class AllureReportInfo { @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String id; @XmlElement(required = true) protected String url; @XmlAttribute(name = "size") protected Long size; @XmlAttribute(name = "time") protected Long time; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } /** * 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