001//
002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
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.05.21 at 04:43:57 PM EDT 
006//
007
008
009package org.dcm4che3.audit;
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;
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&gt;
025 *   &lt;complexContent&gt;
026 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
027 *       &lt;attGroup ref="{}CodedValueType"/&gt;
028 *     &lt;/restriction&gt;
029 *   &lt;/complexContent&gt;
030 * &lt;/complexType&gt;
031 * </pre>
032 * 
033 * 
034 */
035@XmlAccessorType(XmlAccessType.FIELD)
036@XmlType(name = "")
037@XmlRootElement(name = "MediaType")
038public class MediaType {
039
040    @XmlAttribute(name = "csd-code", required = true)
041    protected String code;
042    @XmlAttribute(name = "codeSystem")
043    protected String codeSystem;
044    @XmlAttribute(name = "codeSystemName")
045    protected String codeSystemName;
046    @XmlAttribute(name = "displayName")
047    protected String displayName;
048    @XmlAttribute(name = "originalText")
049    protected String originalText;
050
051    /**
052     * Gets the value of the code property.
053     * 
054     * @return
055     *     possible object is
056     *     {@link String }
057     *     
058     */
059    public String getCode() {
060        return code;
061    }
062
063    /**
064     * Sets the value of the code property.
065     * 
066     * @param value
067     *     allowed object is
068     *     {@link String }
069     *     
070     */
071    public void setCode(String value) {
072        this.code = value;
073    }
074
075    /**
076     * Gets the value of the codeSystem property.
077     * 
078     * @return
079     *     possible object is
080     *     {@link String }
081     *     
082     */
083    public String getCodeSystem() {
084        return codeSystem;
085    }
086
087    /**
088     * Sets the value of the codeSystem property.
089     * 
090     * @param value
091     *     allowed object is
092     *     {@link String }
093     *     
094     */
095    public void setCodeSystem(String value) {
096        this.codeSystem = value;
097    }
098
099    /**
100     * Gets the value of the codeSystemName property.
101     * 
102     * @return
103     *     possible object is
104     *     {@link String }
105     *     
106     */
107    public String getCodeSystemName() {
108        return codeSystemName;
109    }
110
111    /**
112     * Sets the value of the codeSystemName property.
113     * 
114     * @param value
115     *     allowed object is
116     *     {@link String }
117     *     
118     */
119    public void setCodeSystemName(String value) {
120        this.codeSystemName = value;
121    }
122
123    /**
124     * Gets the value of the displayName property.
125     * 
126     * @return
127     *     possible object is
128     *     {@link String }
129     *     
130     */
131    public String getDisplayName() {
132        return displayName;
133    }
134
135    /**
136     * Sets the value of the displayName property.
137     * 
138     * @param value
139     *     allowed object is
140     *     {@link String }
141     *     
142     */
143    public void setDisplayName(String value) {
144        this.displayName = value;
145    }
146
147    /**
148     * Gets the value of the originalText property.
149     * 
150     * @return
151     *     possible object is
152     *     {@link String }
153     *     
154     */
155    public String getOriginalText() {
156        return originalText;
157    }
158
159    /**
160     * Sets the value of the originalText property.
161     * 
162     * @param value
163     *     allowed object is
164     *     {@link String }
165     *     
166     */
167    public void setOriginalText(String value) {
168        this.originalText = value;
169    }
170
171}