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:53 PM GMT-10:00 006 // 007 008 009 package org.hackystat.dailyprojectdata.resource.devtime.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 use="required""/> 031 * <attribute ref="{}DevTime use="required""/> 032 * </restriction> 033 * </complexContent> 034 * </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", required = true) 048 @XmlSchemaType(name = "anyURI") 049 protected String memberUri; 050 @XmlAttribute(name = "DevTime", required = true) 051 protected BigInteger devTime; 052 053 /** 054 * Gets the value of the memberUri property. 055 * 056 * @return 057 * possible object is 058 * {@link String } 059 * 060 */ 061 public String getMemberUri() { 062 return memberUri; 063 } 064 065 /** 066 * Sets the value of the memberUri property. 067 * 068 * @param value 069 * allowed object is 070 * {@link String } 071 * 072 */ 073 public void setMemberUri(String value) { 074 this.memberUri = value; 075 } 076 077 public boolean isSetMemberUri() { 078 return (this.memberUri!= null); 079 } 080 081 /** 082 * Gets the value of the devTime property. 083 * 084 * @return 085 * possible object is 086 * {@link BigInteger } 087 * 088 */ 089 public BigInteger getDevTime() { 090 return devTime; 091 } 092 093 /** 094 * Sets the value of the devTime property. 095 * 096 * @param value 097 * allowed object is 098 * {@link BigInteger } 099 * 100 */ 101 public void setDevTime(BigInteger value) { 102 this.devTime = value; 103 } 104 105 public boolean isSetDevTime() { 106 return (this.devTime!= null); 107 } 108 109 }