1
2 package com.ontotext.ordi.wsmo4rdf.remote.client.conn;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlType;
8
9
10 /**
11 * <p>Java class for listMediators complex type.
12 *
13 * <p>The following schema fragment specifies the expected content contained within this class.
14 *
15 * <pre>
16 * <complexType name="listMediators">
17 * <complexContent>
18 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19 * <sequence>
20 * <element name="arg0" type="{http://www.w3.org/2001/XMLSchema}int"/>
21 * </sequence>
22 * </restriction>
23 * </complexContent>
24 * </complexType>
25 * </pre>
26 *
27 *
28 */
29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "listMediators", propOrder = {
31 "arg0"
32 })
33 public class ListMediators {
34
35 @XmlElement(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/")
36 protected int arg0;
37
38 /**
39 * Gets the value of the arg0 property.
40 *
41 */
42 public int getArg0() {
43 return arg0;
44 }
45
46 /**
47 * Sets the value of the arg0 property.
48 *
49 */
50 public void setArg0(int value) {
51 this.arg0 = value;
52 }
53
54 }