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 SolutionData complex type. * *

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

 * <complexType name="SolutionData">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="solutionID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *         <element name="solutionUUID" 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="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{urn:aewebservices71}Solution-Type"/>
 *         <element name="prefix" 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 = "SolutionData", propOrder = { "solutionID", "solutionUUID", "name", "displayName", "type", "prefix", "description" }) public class SolutionData { @XmlElement(required = true) protected BigInteger solutionID; @XmlElementRef(name = "solutionUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement solutionUUID; @XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement name; @XmlElementRef(name = "displayName", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement displayName; @XmlElement(required = true) protected SolutionType type; @XmlElementRef(name = "prefix", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement prefix; @XmlElementRef(name = "description", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement description; /** * Gets the value of the solutionID property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSolutionID() { return solutionID; } /** * Sets the value of the solutionID property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSolutionID(BigInteger value) { this.solutionID = value; } /** * Gets the value of the solutionUUID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getSolutionUUID() { return solutionUUID; } /** * Sets the value of the solutionUUID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setSolutionUUID(JAXBElement value) { this.solutionUUID = ((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 displayName property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setDisplayName(JAXBElement value) { this.displayName = ((JAXBElement ) value); } /** * Gets the value of the type property. * * @return * possible object is * {@link SolutionType } * */ public SolutionType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link SolutionType } * */ public void setType(SolutionType value) { this.type = value; } /** * Gets the value of the prefix property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getPrefix() { return prefix; } /** * Sets the value of the prefix property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setPrefix(JAXBElement value) { this.prefix = ((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); } }