1
2 package com.ontotext.ordi.wsmo4rdf.remote.client.src;
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 getConnectionAuth complex type.
12 *
13 * <p>The following schema fragment specifies the expected content contained within this class.
14 *
15 * <pre>
16 * <complexType name="getConnectionAuth">
17 * <complexContent>
18 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19 * <sequence>
20 * <element name="wsmoSourceId" type="{http://www.w3.org/2001/XMLSchema}int"/>
21 * <element name="username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22 * <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23 * </sequence>
24 * </restriction>
25 * </complexContent>
26 * </complexType>
27 * </pre>
28 *
29 *
30 */
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "getConnectionAuth", propOrder = {
33 "wsmoSourceId",
34 "username",
35 "password"
36 })
37 public class GetConnectionAuth {
38
39 @XmlElement(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/")
40 protected int wsmoSourceId;
41 @XmlElement(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/")
42 protected String username;
43 @XmlElement(namespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/")
44 protected String password;
45
46 /**
47 * Gets the value of the wsmoSourceId property.
48 *
49 */
50 public int getWsmoSourceId() {
51 return wsmoSourceId;
52 }
53
54 /**
55 * Sets the value of the wsmoSourceId property.
56 *
57 */
58 public void setWsmoSourceId(int value) {
59 this.wsmoSourceId = value;
60 }
61
62 /**
63 * Gets the value of the username property.
64 *
65 * @return
66 * possible object is
67 * {@link String }
68 *
69 */
70 public String getUsername() {
71 return username;
72 }
73
74 /**
75 * Sets the value of the username property.
76 *
77 * @param value
78 * allowed object is
79 * {@link String }
80 *
81 */
82 public void setUsername(String value) {
83 this.username = value;
84 }
85
86 /**
87 * Gets the value of the password property.
88 *
89 * @return
90 * possible object is
91 * {@link String }
92 *
93 */
94 public String getPassword() {
95 return password;
96 }
97
98 /**
99 * Sets the value of the password property.
100 *
101 * @param value
102 * allowed object is
103 * {@link String }
104 *
105 */
106 public void setPassword(String value) {
107 this.password = value;
108 }
109
110 }