001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs 
003    // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004    // Any modifications to this file will be lost upon recompilation of the source schema. 
005    // Generated on: 2007.12.18 at 12:05:45 PM GMT-10:00 
006    //
007    
008    
009    package org.hackystat.sensorshell.usermap.resource.jaxb;
010    
011    import javax.xml.bind.annotation.XmlAccessType;
012    import javax.xml.bind.annotation.XmlAccessorType;
013    import javax.xml.bind.annotation.XmlAttribute;
014    import javax.xml.bind.annotation.XmlRootElement;
015    import javax.xml.bind.annotation.XmlSchemaType;
016    import javax.xml.bind.annotation.XmlType;
017    
018    
019    /**
020     * <p>Java class for anonymous complex type.
021     * 
022     * <p>The following schema fragment specifies the expected content contained within this class.
023     * 
024     * <pre>
025     * &lt;complexType>
026     *   &lt;complexContent>
027     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
028     *       &lt;attribute ref="{}toolaccount"/>
029     *       &lt;attribute ref="{}user"/>
030     *       &lt;attribute ref="{}password"/>
031     *       &lt;attribute ref="{}sensorbase"/>
032     *     &lt;/restriction>
033     *   &lt;/complexContent>
034     * &lt;/complexType>
035     * </pre>
036     * 
037     * 
038     */
039    @XmlAccessorType(XmlAccessType.FIELD)
040    @XmlType(name = "")
041    @XmlRootElement(name = "user")
042    public class User {
043    
044        @XmlAttribute
045        protected String toolaccount;
046        @XmlAttribute
047        protected String user;
048        @XmlAttribute
049        protected String password;
050        @XmlAttribute
051        @XmlSchemaType(name = "anyURI")
052        protected String sensorbase;
053    
054        /**
055         * Gets the value of the toolaccount property.
056         * 
057         * @return
058         *     possible object is
059         *     {@link String }
060         *     
061         */
062        public String getToolaccount() {
063            return toolaccount;
064        }
065    
066        /**
067         * Sets the value of the toolaccount property.
068         * 
069         * @param value
070         *     allowed object is
071         *     {@link String }
072         *     
073         */
074        public void setToolaccount(String value) {
075            this.toolaccount = value;
076        }
077    
078        /**
079         * Gets the value of the user property.
080         * 
081         * @return
082         *     possible object is
083         *     {@link String }
084         *     
085         */
086        public String getUser() {
087            return user;
088        }
089    
090        /**
091         * Sets the value of the user property.
092         * 
093         * @param value
094         *     allowed object is
095         *     {@link String }
096         *     
097         */
098        public void setUser(String value) {
099            this.user = value;
100        }
101    
102        /**
103         * Gets the value of the password property.
104         * 
105         * @return
106         *     possible object is
107         *     {@link String }
108         *     
109         */
110        public String getPassword() {
111            return password;
112        }
113    
114        /**
115         * Sets the value of the password property.
116         * 
117         * @param value
118         *     allowed object is
119         *     {@link String }
120         *     
121         */
122        public void setPassword(String value) {
123            this.password = value;
124        }
125    
126        /**
127         * Gets the value of the sensorbase property.
128         * 
129         * @return
130         *     possible object is
131         *     {@link String }
132         *     
133         */
134        public String getSensorbase() {
135            return sensorbase;
136        }
137    
138        /**
139         * Sets the value of the sensorbase property.
140         * 
141         * @param value
142         *     allowed object is
143         *     {@link String }
144         *     
145         */
146        public void setSensorbase(String value) {
147            this.sensorbase = value;
148        }
149    
150    }