001//
002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
003// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004// Any modifications to this file will be lost upon recompilation of the source schema. 
005// Generated on: 2017.04.15 at 10:50:52 PM IST 
006//
007
008
009package com.thed.zblast.parser.jaxb.junit;
010
011import javax.xml.bind.annotation.XmlAccessType;
012import javax.xml.bind.annotation.XmlAccessorType;
013import javax.xml.bind.annotation.XmlAttribute;
014import javax.xml.bind.annotation.XmlRootElement;
015import javax.xml.bind.annotation.XmlType;
016import javax.xml.bind.annotation.XmlValue;
017
018
019/**
020 * <p>Java class for anonymous complex type.
021 * 
022 * <p>The following schema fragment specifies the expected content contained within this class.
023 * 
024 * <pre>
025 * &lt;complexType>
026 *   &lt;complexContent>
027 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
028 *       &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
029 *       &lt;attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" />
030 *     &lt;/restriction>
031 *   &lt;/complexContent>
032 * &lt;/complexType>
033 * </pre>
034 * 
035 * 
036 */
037@XmlAccessorType(XmlAccessType.FIELD)
038@XmlType(name = "", propOrder = {
039    "content"
040})
041@XmlRootElement(name = "error")
042public class Error {
043
044    @XmlValue
045    protected String content;
046    @XmlAttribute(name = "type")
047    protected String type;
048    @XmlAttribute(name = "message")
049    protected String message;
050
051    /**
052     * Gets the value of the content property.
053     * 
054     * @return
055     *     possible object is
056     *     {@link String }
057     *     
058     */
059    public String getContent() {
060        return content;
061    }
062
063    /**
064     * Sets the value of the content property.
065     * 
066     * @param value
067     *     allowed object is
068     *     {@link String }
069     *     
070     */
071    public void setContent(String value) {
072        this.content = value;
073    }
074
075    /**
076     * Gets the value of the type property.
077     * 
078     * @return
079     *     possible object is
080     *     {@link String }
081     *     
082     */
083    public String getType() {
084        return type;
085    }
086
087    /**
088     * Sets the value of the type property.
089     * 
090     * @param value
091     *     allowed object is
092     *     {@link String }
093     *     
094     */
095    public void setType(String value) {
096        this.type = value;
097    }
098
099    /**
100     * Gets the value of the message property.
101     * 
102     * @return
103     *     possible object is
104     *     {@link String }
105     *     
106     */
107    public String getMessage() {
108        return message;
109    }
110
111    /**
112     * Sets the value of the message property.
113     * 
114     * @param value
115     *     allowed object is
116     *     {@link String }
117     *     
118     */
119    public void setMessage(String value) {
120        this.message = value;
121    }
122
123}