Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import javax.xml.bind.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlElementRef;
7
import javax.xml.bind.annotation.XmlRootElement;
8
import javax.xml.bind.annotation.XmlType;
9
10
 
11
 
12
 * <p>Java class for anonymous complex type.
13
 *
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 *
16
 * <pre>
17
 * &lt;complexType>
18
 *   &lt;complexContent>
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20
 *       &lt;sequence>
21
 *         &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22
 *       &lt;/sequence>
23
 *     &lt;/restriction>
24
 *   &lt;/complexContent>
25
 * &lt;/complexType>
26
 * </pre>
27
 *
28
 *
29
 */
30
@XmlAccessorType(XmlAccessType.FIELD)
31
@XmlType(name = "", propOrder = {
32
    "_return"
33
})
34
@XmlRootElement(name = "GenerateUUIDResponse")
35
public class GenerateUUIDResponse {
36
37
 
38
    protected JAXBElement<String> _return;
39
40
 
41
     * Gets the value of the return property.
42
     *
43
     * @return
44
     *     possible object is
45
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
46
     *
47
     */
48
    public JAXBElement<String> getReturn() {
49
        return _return;
50
    }
51
52
 
53
     * Sets the value of the return property.
54
     *
55
     * @param value
56
     *     allowed object is
57
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
58
     *
59
     */
60
    public void setReturn(JAXBElement<String> value) {
61
        this._return = ((JAXBElement<String> ) value);
62
    }
63
64
 
65