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