package org.cagrid.mms.model; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for UMLProjectIdentifer complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="UMLProjectIdentifer"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="AdditionalSourceProperty" type="{gme://caGrid.caBIG/2.0/org.cagrid.mms.domain}Property" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="identifier" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="sourceIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UMLProjectIdentifer", propOrder = { "additionalSourceProperty" }) public class UMLProjectIdentifer implements Serializable { @XmlElement(name = "AdditionalSourceProperty") protected List<Property> additionalSourceProperty; @XmlAttribute(name = "identifier") protected String identifier; @XmlAttribute(name = "version") protected String version; @XmlAttribute(name = "sourceIdentifier") protected String sourceIdentifier; /** * Gets the value of the additionalSourceProperty property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the additionalSourceProperty property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAdditionalSourceProperty().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Property } * * */ public List<Property> getAdditionalSourceProperty() { if (additionalSourceProperty == null) { additionalSourceProperty = new ArrayList<Property>(); } return this.additionalSourceProperty; } /** * Gets the value of the identifier property. * * @return * possible object is * {@link String } * */ public String getIdentifier() { return identifier; } /** * Sets the value of the identifier property. * * @param value * allowed object is * {@link String } * */ public void setIdentifier(String value) { this.identifier = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the sourceIdentifier property. * * @return * possible object is * {@link String } * */ public String getSourceIdentifier() { return sourceIdentifier; } /** * Sets the value of the sourceIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setSourceIdentifier(String value) { this.sourceIdentifier = value; } }