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