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.03.24 at 12:05:53 PM HST 
006    //
007    
008    
009    package org.hackystat.dailyprojectdata.resource.build.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.XmlSchemaType;
017    import javax.xml.bind.annotation.XmlType;
018    
019    
020    /**
021     * <p>Java class for anonymous complex type.
022     * 
023     * <p>The following schema fragment specifies the expected content contained within this class.
024     * 
025     * <pre>
026     * &lt;complexType>
027     *   &lt;complexContent>
028     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
029     *       &lt;attribute ref="{}MemberUri"/>
030     *       &lt;attribute ref="{}Success"/>
031     *       &lt;attribute ref="{}Failure"/>
032     *     &lt;/restriction>
033     *   &lt;/complexContent>
034     * &lt;/complexType>
035     * </pre>
036     * 
037     * 
038     */
039    @XmlAccessorType(XmlAccessType.FIELD)
040    @XmlType(name = "")
041    @XmlRootElement(name = "MemberData")
042    public class MemberData
043        implements Serializable
044    {
045    
046        private final static long serialVersionUID = 12343L;
047        @XmlAttribute(name = "MemberUri")
048        @XmlSchemaType(name = "anyURI")
049        protected String memberUri;
050        @XmlAttribute(name = "Success")
051        protected Integer success;
052        @XmlAttribute(name = "Failure")
053        protected Integer failure;
054    
055        /**
056         * Gets the value of the memberUri property.
057         * 
058         * @return
059         *     possible object is
060         *     {@link String }
061         *     
062         */
063        public String getMemberUri() {
064            return memberUri;
065        }
066    
067        /**
068         * Sets the value of the memberUri property.
069         * 
070         * @param value
071         *     allowed object is
072         *     {@link String }
073         *     
074         */
075        public void setMemberUri(String value) {
076            this.memberUri = value;
077        }
078    
079        public boolean isSetMemberUri() {
080            return (this.memberUri!= null);
081        }
082    
083        /**
084         * Gets the value of the success property.
085         * 
086         * @return
087         *     possible object is
088         *     {@link Integer }
089         *     
090         */
091        public int getSuccess() {
092            return success;
093        }
094    
095        /**
096         * Sets the value of the success property.
097         * 
098         * @param value
099         *     allowed object is
100         *     {@link Integer }
101         *     
102         */
103        public void setSuccess(int value) {
104            this.success = value;
105        }
106    
107        public boolean isSetSuccess() {
108            return (this.success!= null);
109        }
110    
111        public void unsetSuccess() {
112            this.success = null;
113        }
114    
115        /**
116         * Gets the value of the failure property.
117         * 
118         * @return
119         *     possible object is
120         *     {@link Integer }
121         *     
122         */
123        public int getFailure() {
124            return failure;
125        }
126    
127        /**
128         * Sets the value of the failure property.
129         * 
130         * @param value
131         *     allowed object is
132         *     {@link Integer }
133         *     
134         */
135        public void setFailure(int value) {
136            this.failure = value;
137        }
138    
139        public boolean isSetFailure() {
140            return (this.failure!= null);
141        }
142    
143        public void unsetFailure() {
144            this.failure = null;
145        }
146    
147    }