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 java.util.ArrayList;
012import java.util.List;
013import javax.xml.bind.annotation.XmlAccessType;
014import javax.xml.bind.annotation.XmlAccessorType;
015import javax.xml.bind.annotation.XmlAttribute;
016import javax.xml.bind.annotation.XmlElement;
017import javax.xml.bind.annotation.XmlType;
018
019
020/**
021 * <p>Java class for AuditSourceIdentificationType complex type.
022 * 
023 * <p>The following schema fragment specifies the expected content contained within this class.
024 * 
025 * <pre>
026 * &lt;complexType name="AuditSourceIdentificationType"&gt;
027 *   &lt;complexContent&gt;
028 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
029 *       &lt;sequence&gt;
030 *         &lt;element ref="{}AuditSourceTypeCode" maxOccurs="unbounded" minOccurs="0"/&gt;
031 *       &lt;/sequence&gt;
032 *       &lt;attribute name="AuditEnterpriseSiteID" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
033 *       &lt;attribute name="AuditSourceID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
034 *     &lt;/restriction&gt;
035 *   &lt;/complexContent&gt;
036 * &lt;/complexType&gt;
037 * </pre>
038 * 
039 * 
040 */
041@XmlAccessorType(XmlAccessType.FIELD)
042@XmlType(name = "AuditSourceIdentificationType", propOrder = {
043    "auditSourceTypeCode"
044})
045public class AuditSourceIdentification {
046
047    @XmlElement(name = "AuditSourceTypeCode")
048    protected List<AuditSourceTypeCode> auditSourceTypeCode;
049    @XmlAttribute(name = "AuditEnterpriseSiteID")
050    protected String auditEnterpriseSiteID;
051    @XmlAttribute(name = "AuditSourceID", required = true)
052    protected String auditSourceID;
053
054    /**
055     * Gets the value of the auditSourceTypeCode property.
056     * 
057     * <p>
058     * This accessor method returns a reference to the live list,
059     * not a snapshot. Therefore any modification you make to the
060     * returned list will be present inside the JAXB object.
061     * This is why there is not a <CODE>set</CODE> method for the auditSourceTypeCode property.
062     * 
063     * <p>
064     * For example, to add a new item, do as follows:
065     * <pre>
066     *    getAuditSourceTypeCode().add(newItem);
067     * </pre>
068     * 
069     * 
070     * <p>
071     * Objects of the following type(s) are allowed in the list
072     * {@link AuditSourceTypeCode }
073     * 
074     * 
075     */
076    public List<AuditSourceTypeCode> getAuditSourceTypeCode() {
077        if (auditSourceTypeCode == null) {
078            auditSourceTypeCode = new ArrayList<AuditSourceTypeCode>();
079        }
080        return this.auditSourceTypeCode;
081    }
082
083    /**
084     * Gets the value of the auditEnterpriseSiteID property.
085     * 
086     * @return
087     *     possible object is
088     *     {@link String }
089     *     
090     */
091    public String getAuditEnterpriseSiteID() {
092        return auditEnterpriseSiteID;
093    }
094
095    /**
096     * Sets the value of the auditEnterpriseSiteID property.
097     * 
098     * @param value
099     *     allowed object is
100     *     {@link String }
101     *     
102     */
103    public void setAuditEnterpriseSiteID(String value) {
104        this.auditEnterpriseSiteID = value;
105    }
106
107    /**
108     * Gets the value of the auditSourceID property.
109     * 
110     * @return
111     *     possible object is
112     *     {@link String }
113     *     
114     */
115    public String getAuditSourceID() {
116        return auditSourceID;
117    }
118
119    /**
120     * Sets the value of the auditSourceID property.
121     * 
122     * @param value
123     *     allowed object is
124     *     {@link String }
125     *     
126     */
127    public void setAuditSourceID(String value) {
128        this.auditSourceID = value;
129    }
130
131}