package net.brutex.sbm.wsclient; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; 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 Transition complex type. * *

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

 * <complexType name="Transition">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="transitionID" type="{http://www.w3.org/2001/XMLSchema}integer"/>
 *         <element name="transitionUUID" 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="fromState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fromStateID" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
 *         <element name="fromStateUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="toState" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="toStateID" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
 *         <element name="toStateUUID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{urn:aewebservices71}Transition-Type"/>
 *         <element name="fullyQualifiedPostIssueProjectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="transitionAttributes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Transition", propOrder = { "transitionID", "transitionUUID", "name", "fromState", "fromStateID", "fromStateUUID", "toState", "toStateID", "toStateUUID", "type", "fullyQualifiedPostIssueProjectName", "transitionAttributes" }) public class Transition { @XmlElement(required = true) protected BigInteger transitionID; @XmlElementRef(name = "transitionUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement transitionUUID; @XmlElementRef(name = "name", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement name; @XmlElementRef(name = "fromState", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement fromState; @XmlElementRef(name = "fromStateID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement fromStateID; @XmlElementRef(name = "fromStateUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement fromStateUUID; @XmlElementRef(name = "toState", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement toState; @XmlElementRef(name = "toStateID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement toStateID; @XmlElementRef(name = "toStateUUID", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement toStateUUID; @XmlElement(required = true) protected TransitionType type; @XmlElementRef(name = "fullyQualifiedPostIssueProjectName", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement fullyQualifiedPostIssueProjectName; protected List transitionAttributes; /** * Gets the value of the transitionID property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTransitionID() { return transitionID; } /** * Sets the value of the transitionID property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTransitionID(BigInteger value) { this.transitionID = value; } /** * Gets the value of the transitionUUID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getTransitionUUID() { return transitionUUID; } /** * Sets the value of the transitionUUID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setTransitionUUID(JAXBElement value) { this.transitionUUID = ((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 fromState property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getFromState() { return fromState; } /** * Sets the value of the fromState property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setFromState(JAXBElement value) { this.fromState = ((JAXBElement ) value); } /** * Gets the value of the fromStateID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * */ public JAXBElement getFromStateID() { return fromStateID; } /** * Sets the value of the fromStateID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * */ public void setFromStateID(JAXBElement value) { this.fromStateID = ((JAXBElement ) value); } /** * Gets the value of the fromStateUUID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getFromStateUUID() { return fromStateUUID; } /** * Sets the value of the fromStateUUID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setFromStateUUID(JAXBElement value) { this.fromStateUUID = ((JAXBElement ) value); } /** * Gets the value of the toState property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getToState() { return toState; } /** * Sets the value of the toState property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setToState(JAXBElement value) { this.toState = ((JAXBElement ) value); } /** * Gets the value of the toStateID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * */ public JAXBElement getToStateID() { return toStateID; } /** * Sets the value of the toStateID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link BigInteger }{@code >} * */ public void setToStateID(JAXBElement value) { this.toStateID = ((JAXBElement ) value); } /** * Gets the value of the toStateUUID property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getToStateUUID() { return toStateUUID; } /** * Sets the value of the toStateUUID property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setToStateUUID(JAXBElement value) { this.toStateUUID = ((JAXBElement ) value); } /** * Gets the value of the type property. * * @return * possible object is * {@link TransitionType } * */ public TransitionType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link TransitionType } * */ public void setType(TransitionType value) { this.type = value; } /** * Gets the value of the fullyQualifiedPostIssueProjectName property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getFullyQualifiedPostIssueProjectName() { return fullyQualifiedPostIssueProjectName; } /** * Sets the value of the fullyQualifiedPostIssueProjectName property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setFullyQualifiedPostIssueProjectName(JAXBElement value) { this.fullyQualifiedPostIssueProjectName = ((JAXBElement ) value); } /** * Gets the value of the transitionAttributes property. * *

* 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 set method for the transitionAttributes property. * *

* For example, to add a new item, do as follows: *

     *    getTransitionAttributes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getTransitionAttributes() { if (transitionAttributes == null) { transitionAttributes = new ArrayList(); } return this.transitionAttributes; } }