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: 2008.12.02 at 08:59:01 AM HST 
006    //
007    
008    
009    package org.hackystat.tickertape.tickerlingua.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.XmlType;
016    
017    
018    /**
019     * <p>Java class for anonymous complex type.
020     * 
021     * <p>The following schema fragment specifies the expected content contained within this class.
022     * 
023     * <pre>
024     * &lt;complexType>
025     *   &lt;complexContent>
026     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027     *       &lt;attribute ref="{}id use="required""/>
028     *       &lt;attribute ref="{}sensorbase use="required""/>
029     *       &lt;attribute ref="{}dailyprojectdata use="required""/>
030     *       &lt;attribute ref="{}telemetry use="required""/>
031     *       &lt;attribute ref="{}projectbrowser use="required""/>
032     *     &lt;/restriction>
033     *   &lt;/complexContent>
034     * &lt;/complexType>
035     * </pre>
036     * 
037     * 
038     */
039    @XmlAccessorType(XmlAccessType.FIELD)
040    @XmlType(name = "")
041    @XmlRootElement(name = "HackystatService")
042    public class HackystatService {
043    
044        @XmlAttribute(required = true)
045        protected String id;
046        @XmlAttribute(required = true)
047        protected String sensorbase;
048        @XmlAttribute(required = true)
049        protected String dailyprojectdata;
050        @XmlAttribute(required = true)
051        protected String telemetry;
052        @XmlAttribute(required = true)
053        protected String projectbrowser;
054    
055        /**
056         * Gets the value of the id property.
057         * 
058         * @return
059         *     possible object is
060         *     {@link String }
061         *     
062         */
063        public String getId() {
064            return id;
065        }
066    
067        /**
068         * Sets the value of the id property.
069         * 
070         * @param value
071         *     allowed object is
072         *     {@link String }
073         *     
074         */
075        public void setId(String value) {
076            this.id = value;
077        }
078    
079        /**
080         * Gets the value of the sensorbase property.
081         * 
082         * @return
083         *     possible object is
084         *     {@link String }
085         *     
086         */
087        public String getSensorbase() {
088            return sensorbase;
089        }
090    
091        /**
092         * Sets the value of the sensorbase property.
093         * 
094         * @param value
095         *     allowed object is
096         *     {@link String }
097         *     
098         */
099        public void setSensorbase(String value) {
100            this.sensorbase = value;
101        }
102    
103        /**
104         * Gets the value of the dailyprojectdata property.
105         * 
106         * @return
107         *     possible object is
108         *     {@link String }
109         *     
110         */
111        public String getDailyprojectdata() {
112            return dailyprojectdata;
113        }
114    
115        /**
116         * Sets the value of the dailyprojectdata property.
117         * 
118         * @param value
119         *     allowed object is
120         *     {@link String }
121         *     
122         */
123        public void setDailyprojectdata(String value) {
124            this.dailyprojectdata = value;
125        }
126    
127        /**
128         * Gets the value of the telemetry property.
129         * 
130         * @return
131         *     possible object is
132         *     {@link String }
133         *     
134         */
135        public String getTelemetry() {
136            return telemetry;
137        }
138    
139        /**
140         * Sets the value of the telemetry property.
141         * 
142         * @param value
143         *     allowed object is
144         *     {@link String }
145         *     
146         */
147        public void setTelemetry(String value) {
148            this.telemetry = value;
149        }
150    
151        /**
152         * Gets the value of the projectbrowser property.
153         * 
154         * @return
155         *     possible object is
156         *     {@link String }
157         *     
158         */
159        public String getProjectbrowser() {
160            return projectbrowser;
161        }
162    
163        /**
164         * Sets the value of the projectbrowser property.
165         * 
166         * @param value
167         *     allowed object is
168         *     {@link String }
169         *     
170         */
171        public void setProjectbrowser(String value) {
172            this.projectbrowser = value;
173        }
174    
175    }