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.XmlElement;
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;sequence&gt;
028 *         &lt;element ref="{}MediaType"/&gt;
029 *       &lt;/sequence&gt;
030 *     &lt;/restriction&gt;
031 *   &lt;/complexContent&gt;
032 * &lt;/complexType&gt;
033 * </pre>
034 * 
035 * 
036 */
037@XmlAccessorType(XmlAccessType.FIELD)
038@XmlType(name = "", propOrder = {
039    "mediaType"
040})
041@XmlRootElement(name = "MediaIdentifier")
042public class MediaIdentifier {
043
044    @XmlElement(name = "MediaType", required = true)
045    protected MediaType mediaType;
046
047    /**
048     * Gets the value of the mediaType property.
049     * 
050     * @return
051     *     possible object is
052     *     {@link MediaType }
053     *     
054     */
055    public MediaType getMediaType() {
056        return mediaType;
057    }
058
059    /**
060     * Sets the value of the mediaType property.
061     * 
062     * @param value
063     *     allowed object is
064     *     {@link MediaType }
065     *     
066     */
067    public void setMediaType(MediaType value) {
068        this.mediaType = value;
069    }
070
071}