package net.brutex.sbm.wsclient; import java.math.BigInteger; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** *

Java class for ProjectData complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ProjectData">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="projectID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *         <element name="projectUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fullyQualifiedName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProjectData", propOrder = { "projectID", "projectUUID", "name", "fullyQualifiedName", "description" }) public class ProjectData { @XmlElement(required = true) protected BigInteger projectID; @XmlElementRef(name = "projectUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement projectUUID; @XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement name; @XmlElementRef(name = "fullyQualifiedName", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement fullyQualifiedName; @XmlElementRef(name = "description", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement description; /** * Gets the value of the projectID property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getProjectID() { return projectID; } /** * Sets the value of the projectID property. * * @param value * allowed object is * {@link BigInteger } * */ public void setProjectID(BigInteger value) { this.projectID = value; } /** * Gets the value of the projectUUID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getProjectUUID() { return projectUUID; } /** * Sets the value of the projectUUID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setProjectUUID(JAXBElement value) { this.projectUUID = ((JAXBElement ) value); } /** * Gets the value of the name property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setName(JAXBElement value) { this.name = ((JAXBElement ) value); } /** * Gets the value of the fullyQualifiedName property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getFullyQualifiedName() { return fullyQualifiedName; } /** * Sets the value of the fullyQualifiedName property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setFullyQualifiedName(JAXBElement value) { this.fullyQualifiedName = ((JAXBElement ) value); } /** * Gets the value of the description property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setDescription(JAXBElement value) { this.description = ((JAXBElement ) value); } }