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;attribute name="UID" use="required" type="{}OID" /&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 = "StudyIDs")
038public class StudyIDs {
039
040    @XmlAttribute(name = "UID", required = true)
041    protected String uid;
042
043    /**
044     * Gets the value of the uid property.
045     * 
046     * @return
047     *     possible object is
048     *     {@link String }
049     *     
050     */
051    public String getUID() {
052        return uid;
053    }
054
055    /**
056     * Sets the value of the uid property.
057     * 
058     * @param value
059     *     allowed object is
060     *     {@link String }
061     *     
062     */
063    public void setUID(String value) {
064        this.uid = value;
065    }
066
067}