001    //
002    // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-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: 2009.07.19 at 11:49:25 PM HST 
006    //
007    
008    
009    package org.hackystat.dailyprojectdata.resource.issue.jaxb;
010    
011    import java.io.Serializable;
012    import javax.xml.bind.annotation.XmlAccessType;
013    import javax.xml.bind.annotation.XmlAccessorType;
014    import javax.xml.bind.annotation.XmlAttribute;
015    import javax.xml.bind.annotation.XmlRootElement;
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="{}Id use="required""/>
029     *       &lt;attribute ref="{}Milestone"/>
030     *       &lt;attribute ref="{}Owner use="required""/>
031     *       &lt;attribute ref="{}Priority"/>
032     *       &lt;attribute ref="{}Status use="required""/>
033     *       &lt;attribute ref="{}Type"/>
034     *     &lt;/restriction>
035     *   &lt;/complexContent>
036     * &lt;/complexType>
037     * </pre>
038     * 
039     * 
040     */
041    @XmlAccessorType(XmlAccessType.FIELD)
042    @XmlType(name = "")
043    @XmlRootElement(name = "IssueData")
044    public class IssueData
045        implements Serializable
046    {
047    
048        private final static long serialVersionUID = 20090719L;
049        @XmlAttribute(name = "Id", required = true)
050        protected int id;
051        @XmlAttribute(name = "Milestone")
052        protected String milestone;
053        @XmlAttribute(name = "Owner", required = true)
054        protected String owner;
055        @XmlAttribute(name = "Priority")
056        protected String priority;
057        @XmlAttribute(name = "Status", required = true)
058        protected String status;
059        @XmlAttribute(name = "Type")
060        protected String type;
061    
062        /**
063         * Gets the value of the id property.
064         * 
065         */
066        public int getId() {
067            return id;
068        }
069    
070        /**
071         * Sets the value of the id property.
072         * 
073         */
074        public void setId(int value) {
075            this.id = value;
076        }
077    
078        public boolean isSetId() {
079            return true;
080        }
081    
082        /**
083         * Gets the value of the milestone property.
084         * 
085         * @return
086         *     possible object is
087         *     {@link String }
088         *     
089         */
090        public String getMilestone() {
091            return milestone;
092        }
093    
094        /**
095         * Sets the value of the milestone property.
096         * 
097         * @param value
098         *     allowed object is
099         *     {@link String }
100         *     
101         */
102        public void setMilestone(String value) {
103            this.milestone = value;
104        }
105    
106        public boolean isSetMilestone() {
107            return (this.milestone!= null);
108        }
109    
110        /**
111         * Gets the value of the owner property.
112         * 
113         * @return
114         *     possible object is
115         *     {@link String }
116         *     
117         */
118        public String getOwner() {
119            return owner;
120        }
121    
122        /**
123         * Sets the value of the owner property.
124         * 
125         * @param value
126         *     allowed object is
127         *     {@link String }
128         *     
129         */
130        public void setOwner(String value) {
131            this.owner = value;
132        }
133    
134        public boolean isSetOwner() {
135            return (this.owner!= null);
136        }
137    
138        /**
139         * Gets the value of the priority property.
140         * 
141         * @return
142         *     possible object is
143         *     {@link String }
144         *     
145         */
146        public String getPriority() {
147            return priority;
148        }
149    
150        /**
151         * Sets the value of the priority property.
152         * 
153         * @param value
154         *     allowed object is
155         *     {@link String }
156         *     
157         */
158        public void setPriority(String value) {
159            this.priority = value;
160        }
161    
162        public boolean isSetPriority() {
163            return (this.priority!= null);
164        }
165    
166        /**
167         * Gets the value of the status property.
168         * 
169         * @return
170         *     possible object is
171         *     {@link String }
172         *     
173         */
174        public String getStatus() {
175            return status;
176        }
177    
178        /**
179         * Sets the value of the status property.
180         * 
181         * @param value
182         *     allowed object is
183         *     {@link String }
184         *     
185         */
186        public void setStatus(String value) {
187            this.status = value;
188        }
189    
190        public boolean isSetStatus() {
191            return (this.status!= null);
192        }
193    
194        /**
195         * Gets the value of the type property.
196         * 
197         * @return
198         *     possible object is
199         *     {@link String }
200         *     
201         */
202        public String getType() {
203            return type;
204        }
205    
206        /**
207         * Sets the value of the type property.
208         * 
209         * @param value
210         *     allowed object is
211         *     {@link String }
212         *     
213         */
214        public void setType(String value) {
215            this.type = value;
216        }
217    
218        public boolean isSetType() {
219            return (this.type!= null);
220        }
221    
222    }