View Javadoc

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   * &lt;complexType name="getConnectionAuth">
17   *   &lt;complexContent>
18   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19   *       &lt;sequence>
20   *         &lt;element name="wsmoSourceId" type="{http://www.w3.org/2001/XMLSchema}int"/>
21   *         &lt;element name="username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22   *         &lt;element name="password" type="{http://www.w3.org/2001/XMLSchema}string" 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 = "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 }