Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import java.util.List;
5
import javax.xml.bind.annotation.XmlAccessType;
6
import javax.xml.bind.annotation.XmlAccessorType;
7
import javax.xml.bind.annotation.XmlElement;
8
import javax.xml.bind.annotation.XmlRootElement;
9
import javax.xml.bind.annotation.XmlType;
10
11
 
12
 
13
 * <p>Java class for anonymous complex type.
14
 *
15
 * <p>The following schema fragment specifies the expected content contained within this class.
16
 *
17
 * <pre>
18
 * &lt;complexType>
19
 *   &lt;complexContent>
20
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21
 *       &lt;sequence>
22
 *         &lt;element name="return" type="{urn:aewebservices71}Transition" maxOccurs="unbounded" minOccurs="0"/>
23
 *       &lt;/sequence>
24
 *     &lt;/restriction>
25
 *   &lt;/complexContent>
26
 * &lt;/complexType>
27
 * </pre>
28
 *
29
 *
30
 */
31
@XmlAccessorType(XmlAccessType.FIELD)
32
@XmlType(name = "", propOrder = {
33
    "_return"
34
})
35
@XmlRootElement(name = "GetAvailableTransitionsWithStateIDsResponse")
36
public class GetAvailableTransitionsWithStateIDsResponse {
37
38
 
39
    protected List<Transition> _return;
40
41
 
42
     * Gets the value of the return property.
43
     *
44
     * <p>
45
     * This accessor method returns a reference to the live list,
46
     * not a snapshot. Therefore any modification you make to the
47
     * returned list will be present inside the JAXB object.
48
     * This is why there is not a <CODE>set</CODE> method for the return property.
49
     *
50
     * <p>
51
     * For example, to add a new item, do as follows:
52
     * <pre>
53
     *    getReturn().add(newItem);
54
     * </pre>
55
     *
56
     *
57
     * <p>
58
     * Objects of the following type(s) are allowed in the list
59
     * {@link Transition }
60
     *
61
     *
62
     */
63
    public List<Transition> getReturn() {
64
        if (_return == null) {
65
            _return = new ArrayList<Transition>();
66
        }
67
        return this._return;
68
    }
69
70
 
71