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.XmlRootElement;
014import javax.xml.bind.annotation.XmlType;
015import javax.xml.bind.annotation.XmlValue;
016
017
018/**
019 * <p>Java class for anonymous complex type.
020 * 
021 * <p>The following schema fragment specifies the expected content contained within this class.
022 * 
023 * <pre>
024 * &lt;complexType>
025 *   &lt;complexContent>
026 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027 *       &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
028 *       &lt;attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" />
029 *     &lt;/restriction>
030 *   &lt;/complexContent>
031 * &lt;/complexType>
032 * </pre>
033 * 
034 * 
035 */
036@XmlAccessorType(XmlAccessType.FIELD)
037@XmlType(name = "", propOrder = {
038    "content"
039})
040@XmlRootElement(name = "attachment")
041public class Attachment {
042
043    @XmlValue
044    protected String content;
045
046
047    /**
048     * Gets the value of the content property.
049     * 
050     * @return
051     *     possible object is
052     *     {@link String }
053     *     
054     */
055    public String getContent() {
056        return content;
057    }
058
059    /**
060     * Sets the value of the content property.
061     *
062     * @param value
063     *     allowed object is
064     *     {@link String }
065     *
066     */
067    public void setContent(String value) {
068        this.content = value;
069    }
070
071}