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

io.qameta.allure.entity.StatusDetails Maven / Gradle / Ivy

There is a newer version: 2.30.0
Show newest version

package io.qameta.allure.entity;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for StatusDetails complex type. * *

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

 * <complexType name="StatusDetails">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="trace" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="flaky" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StatusDetails", propOrder = { }) public class StatusDetails implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected String message; @XmlElement(required = true) protected String trace; protected boolean flaky; /** * 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 trace property. * * @return * possible object is * {@link String } * */ public String getTrace() { return trace; } /** * Sets the value of the trace property. * * @param value * allowed object is * {@link String } * */ public void setTrace(String value) { this.trace = value; } /** * Gets the value of the flaky property. * */ public boolean isFlaky() { return flaky; } /** * Sets the value of the flaky property. * */ public void setFlaky(boolean value) { this.flaky = value; } public StatusDetails withMessage(String value) { setMessage(value); return this; } public StatusDetails withTrace(String value) { setTrace(value); return this; } public StatusDetails withFlaky(boolean value) { setFlaky(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy