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 ApplicationData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ApplicationData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="applicationID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
* <element name="applicationUUID" 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="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="appDefUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="revision" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApplicationData", propOrder = {
"applicationID",
"applicationUUID",
"name",
"description",
"appDefUUID",
"revision"
})
public class ApplicationData {
@XmlElement(required = true)
protected BigInteger applicationID;
@XmlElementRef(name = "applicationUUID", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement applicationUUID;
@XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement name;
@XmlElementRef(name = "description", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement description;
@XmlElementRef(name = "appDefUUID", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement appDefUUID;
@XmlElementRef(name = "revision", namespace = "urn:aewebservices71", type = JAXBElement.class)
protected JAXBElement revision;
/**
* Gets the value of the applicationID property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getApplicationID() {
return applicationID;
}
/**
* Sets the value of the applicationID property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setApplicationID(BigInteger value) {
this.applicationID = value;
}
/**
* Gets the value of the applicationUUID property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getApplicationUUID() {
return applicationUUID;
}
/**
* Sets the value of the applicationUUID property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setApplicationUUID(JAXBElement value) {
this.applicationUUID = ((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 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);
}
/**
* Gets the value of the appDefUUID property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getAppDefUUID() {
return appDefUUID;
}
/**
* Sets the value of the appDefUUID property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setAppDefUUID(JAXBElement value) {
this.appDefUUID = ((JAXBElement ) value);
}
/**
* Gets the value of the revision property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getRevision() {
return revision;
}
/**
* Sets the value of the revision property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setRevision(JAXBElement value) {
this.revision = ((JAXBElement ) value);
}
}