1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2014.02.17 at 12:19:29 PM CET 
6   //
7   
8   
9   package eu.fbk.knowledgestore.populator.naf.connection;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlRootElement;
14  import javax.xml.bind.annotation.XmlSchemaType;
15  import javax.xml.bind.annotation.XmlType;
16  import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
17  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18  
19  
20  /**
21   * <p>Java class for anonymous complex type.
22   * 
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   * 
25   * <pre>
26   * &lt;complexType>
27   *   &lt;complexContent>
28   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29   *       &lt;sequence>
30   *         &lt;element name="url" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
31   *         &lt;element name="username" type="{http://www.w3.org/2001/XMLSchema}normalizedString" minOccurs="0"/>
32   *         &lt;element name="password" type="{http://www.w3.org/2001/XMLSchema}normalizedString" minOccurs="0"/>
33   *       &lt;/sequence>
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "", propOrder = {
43      "url",
44      "username",
45      "password"
46  })
47  @XmlRootElement(name = "knowledgestore.server")
48  public class KnowledgestoreServer {
49  
50      @XmlSchemaType(name = "anyURI")
51      protected String url;
52      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
53      @XmlSchemaType(name = "normalizedString")
54      protected String username;
55      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
56      @XmlSchemaType(name = "normalizedString")
57      protected String password;
58  
59      /**
60       * Gets the value of the url property.
61       * 
62       * @return
63       *     possible object is
64       *     {@link String }
65       *     
66       */
67      public String getUrl() {
68          return url;
69      }
70  
71      /**
72       * Sets the value of the url property.
73       * 
74       * @param value
75       *     allowed object is
76       *     {@link String }
77       *     
78       */
79      public void setUrl(String value) {
80          this.url = value;
81      }
82  
83      /**
84       * Gets the value of the username property.
85       * 
86       * @return
87       *     possible object is
88       *     {@link String }
89       *     
90       */
91      public String getUsername() {
92          return username;
93      }
94  
95      /**
96       * Sets the value of the username property.
97       * 
98       * @param value
99       *     allowed object is
100      *     {@link String }
101      *     
102      */
103     public void setUsername(String value) {
104         this.username = value;
105     }
106 
107     /**
108      * Gets the value of the password property.
109      * 
110      * @return
111      *     possible object is
112      *     {@link String }
113      *     
114      */
115     public String getPassword() {
116         return password;
117     }
118 
119     /**
120      * Sets the value of the password property.
121      * 
122      * @param value
123      *     allowed object is
124      *     {@link String }
125      *     
126      */
127     public void setPassword(String value) {
128         this.password = value;
129     }
130 
131 }