// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.07.14 at 11:02:34 PM PDT // package org.apache.maven.surefire; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; 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.XmlElementRef; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="properties" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="property" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="testcase" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="failure" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="time"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> * </restriction> * </simpleType> * </attribute> * </extension> * </simpleContent> * </complexType> * </element> * <element name="rerunFailure" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="time"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> * </restriction> * </simpleType> * </attribute> * </extension> * </simpleContent> * </complexType> * </element> * <element name="skipped" minOccurs="0"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </element> * <element name="error" minOccurs="0"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </element> * <element name="system-out" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/> * <element name="system-err" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/> * </sequence> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="classname" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="group" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="time" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> * </restriction> * </simpleType> * </attribute> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="time"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> * </restriction> * </simpleType> * </attribute> * <attribute name="tests" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="errors" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="skipped" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="failures" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="group" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "properties", "testcase" }) @XmlRootElement(name = "testsuite") public class Testsuite { protected List<Testsuite.Properties> properties; protected List<Testsuite.Testcase> testcase; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "time") protected String time; @XmlAttribute(name = "tests", required = true) protected String tests; @XmlAttribute(name = "errors", required = true) protected String errors; @XmlAttribute(name = "skipped", required = true) protected String skipped; @XmlAttribute(name = "failures", required = true) protected String failures; @XmlAttribute(name = "group") protected String group; /** * Gets the value of the properties property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the properties property. * * <p> * For example, to add a new item, do as follows: * <pre> * getProperties().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Testsuite.Properties } * * */ public List<Testsuite.Properties> getProperties() { if (properties == null) { properties = new ArrayList<Testsuite.Properties>(); } return this.properties; } /** * Gets the value of the testcase property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the testcase property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTestcase().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Testsuite.Testcase } * * */ public List<Testsuite.Testcase> getTestcase() { if (testcase == null) { testcase = new ArrayList<Testsuite.Testcase>(); } return this.testcase; } /** * 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 time property. * * @return * possible object is * {@link String } * */ public String getTime() { return time; } /** * Sets the value of the time property. * * @param value * allowed object is * {@link String } * */ public void setTime(String value) { this.time = value; } /** * Gets the value of the tests property. * * @return * possible object is * {@link String } * */ public String getTests() { return tests; } /** * Sets the value of the tests property. * * @param value * allowed object is * {@link String } * */ public void setTests(String value) { this.tests = value; } /** * Gets the value of the errors property. * * @return * possible object is * {@link String } * */ public String getErrors() { return errors; } /** * Sets the value of the errors property. * * @param value * allowed object is * {@link String } * */ public void setErrors(String value) { this.errors = value; } /** * Gets the value of the skipped property. * * @return * possible object is * {@link String } * */ public String getSkipped() { return skipped; } /** * Sets the value of the skipped property. * * @param value * allowed object is * {@link String } * */ public void setSkipped(String value) { this.skipped = value; } /** * Gets the value of the failures property. * * @return * possible object is * {@link String } * */ public String getFailures() { return failures; } /** * Sets the value of the failures property. * * @param value * allowed object is * {@link String } * */ public void setFailures(String value) { this.failures = value; } /** * Gets the value of the group property. * * @return * possible object is * {@link String } * */ public String getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link String } * */ public void setGroup(String value) { this.group = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="property" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "property" }) public static class Properties { protected List<Testsuite.Properties.Property> property; /** * Gets the value of the property property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the property property. * * <p> * For example, to add a new item, do as follows: * <pre> * getProperty().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Testsuite.Properties.Property } * * */ public List<Testsuite.Properties.Property> getProperty() { if (property == null) { property = new ArrayList<Testsuite.Properties.Property>(); } return this.property; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Property { @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "value", required = true) protected String value; /** * 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 value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="failure" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="time"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> * </restriction> * </simpleType> * </attribute> * </extension> * </simpleContent> * </complexType> * </element> * <element name="rerunFailure" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="time"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> * </restriction> * </simpleType> * </attribute> * </extension> * </simpleContent> * </complexType> * </element> * <element name="skipped" minOccurs="0"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </element> * <element name="error" minOccurs="0"> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </element> * <element name="system-out" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/> * <element name="system-err" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/> * </sequence> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="classname" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="group" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="time" use="required"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> * </restriction> * </simpleType> * </attribute> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "failure", "rerunFailure", "skipped", "error", "systemOut", "systemErr" }) public static class Testcase { @XmlElement(nillable = true) protected List<Testsuite.Testcase.Failure> failure; @XmlElement(nillable = true) protected List<Testsuite.Testcase.RerunFailure> rerunFailure; @XmlElementRef(name = "skipped", type = JAXBElement.class, required = false) protected JAXBElement<Testsuite.Testcase.Skipped> skipped; @XmlElementRef(name = "error", type = JAXBElement.class, required = false) protected JAXBElement<Testsuite.Testcase.Error> error; @XmlElementRef(name = "system-out", type = JAXBElement.class, required = false) protected JAXBElement<Object> systemOut; @XmlElementRef(name = "system-err", type = JAXBElement.class, required = false) protected JAXBElement<Object> systemErr; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "classname") protected String classname; @XmlAttribute(name = "group") protected String group; @XmlAttribute(name = "time", required = true) protected String time; /** * Gets the value of the failure property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the failure property. * * <p> * For example, to add a new item, do as follows: * <pre> * getFailure().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Testsuite.Testcase.Failure } * * */ public List<Testsuite.Testcase.Failure> getFailure() { if (failure == null) { failure = new ArrayList<Testsuite.Testcase.Failure>(); } return this.failure; } /** * Gets the value of the rerunFailure property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the rerunFailure property. * * <p> * For example, to add a new item, do as follows: * <pre> * getRerunFailure().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Testsuite.Testcase.RerunFailure } * * */ public List<Testsuite.Testcase.RerunFailure> getRerunFailure() { if (rerunFailure == null) { rerunFailure = new ArrayList<Testsuite.Testcase.RerunFailure>(); } return this.rerunFailure; } /** * Gets the value of the skipped property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link Testsuite.Testcase.Skipped }{@code >} * */ public JAXBElement<Testsuite.Testcase.Skipped> getSkipped() { return skipped; } /** * Sets the value of the skipped property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link Testsuite.Testcase.Skipped }{@code >} * */ public void setSkipped(JAXBElement<Testsuite.Testcase.Skipped> value) { this.skipped = value; } /** * Gets the value of the error property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link Testsuite.Testcase.Error }{@code >} * */ public JAXBElement<Testsuite.Testcase.Error> getError() { return error; } /** * Sets the value of the error property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link Testsuite.Testcase.Error }{@code >} * */ public void setError(JAXBElement<Testsuite.Testcase.Error> value) { this.error = value; } /** * Gets the value of the systemOut property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link Object }{@code >} * */ public JAXBElement<Object> getSystemOut() { return systemOut; } /** * Sets the value of the systemOut property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link Object }{@code >} * */ public void setSystemOut(JAXBElement<Object> value) { this.systemOut = value; } /** * Gets the value of the systemErr property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link Object }{@code >} * */ public JAXBElement<Object> getSystemErr() { return systemErr; } /** * Sets the value of the systemErr property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link Object }{@code >} * */ public void setSystemErr(JAXBElement<Object> value) { this.systemErr = value; } /** * 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 classname property. * * @return * possible object is * {@link String } * */ public String getClassname() { return classname; } /** * Sets the value of the classname property. * * @param value * allowed object is * {@link String } * */ public void setClassname(String value) { this.classname = value; } /** * Gets the value of the group property. * * @return * possible object is * {@link String } * */ public String getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link String } * */ public void setGroup(String value) { this.group = value; } /** * Gets the value of the time property. * * @return * possible object is * {@link String } * */ public String getTime() { return time; } /** * Sets the value of the time property. * * @param value * allowed object is * {@link String } * */ public void setTime(String value) { this.time = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class Error { @XmlValue protected String value; @XmlAttribute(name = "message") protected String message; @XmlAttribute(name = "type", required = true) protected String type; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = 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 type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="time"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> * </restriction> * </simpleType> * </attribute> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class Failure { @XmlValue protected String value; @XmlAttribute(name = "message") protected String message; @XmlAttribute(name = "type", required = true) protected String type; @XmlAttribute(name = "time") protected String time; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = 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 type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the time property. * * @return * possible object is * {@link String } * */ public String getTime() { return time; } /** * Sets the value of the time property. * * @param value * allowed object is * {@link String } * */ public void setTime(String value) { this.time = value; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="time"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <pattern value="(([0-9]{0,3},)*[0-9]{3}|[0-9]{0,3})*(\.[0-9]{0,3})?"/> * </restriction> * </simpleType> * </attribute> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class RerunFailure { @XmlValue protected String value; @XmlAttribute(name = "message") protected String message; @XmlAttribute(name = "type", required = true) protected String type; @XmlAttribute(name = "time") protected String time; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = 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 type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the time property. * * @return * possible object is * {@link String } * */ public String getTime() { return time; } /** * Sets the value of the time property. * * @param value * allowed object is * {@link String } * */ public void setTime(String value) { this.time = value; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class Skipped { @XmlValue protected String value; @XmlAttribute(name = "message") protected String message; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = 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; } } } }