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 * <complexType> 025 * <complexContent> 026 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 027 * <attribute ref="{}id use="required""/> 028 * <attribute ref="{}name use="required""/> 029 * <attribute ref="{}shortname use="required""/> 030 * <attribute ref="{}hackystatservice-refid use="required""/> 031 * <attribute ref="{}projectowner-refid use="required""/> 032 * <attribute ref="{}authuser-refid use="required""/> 033 * <attribute ref="{}mailinglist use="required""/> 034 * </restriction> 035 * </complexContent> 036 * </complexType> 037 * </pre> 038 * 039 * 040 */ 041 @XmlAccessorType(XmlAccessType.FIELD) 042 @XmlType(name = "") 043 @XmlRootElement(name = "HackystatProject") 044 public class HackystatProject { 045 046 @XmlAttribute(required = true) 047 protected String id; 048 @XmlAttribute(required = true) 049 protected String name; 050 @XmlAttribute(required = true) 051 protected String shortname; 052 @XmlAttribute(name = "hackystatservice-refid", required = true) 053 protected String hackystatserviceRefid; 054 @XmlAttribute(name = "projectowner-refid", required = true) 055 protected String projectownerRefid; 056 @XmlAttribute(name = "authuser-refid", required = true) 057 protected String authuserRefid; 058 @XmlAttribute(required = true) 059 protected String mailinglist; 060 061 /** 062 * Gets the value of the id property. 063 * 064 * @return 065 * possible object is 066 * {@link String } 067 * 068 */ 069 public String getId() { 070 return id; 071 } 072 073 /** 074 * Sets the value of the id property. 075 * 076 * @param value 077 * allowed object is 078 * {@link String } 079 * 080 */ 081 public void setId(String value) { 082 this.id = value; 083 } 084 085 /** 086 * Gets the value of the name property. 087 * 088 * @return 089 * possible object is 090 * {@link String } 091 * 092 */ 093 public String getName() { 094 return name; 095 } 096 097 /** 098 * Sets the value of the name property. 099 * 100 * @param value 101 * allowed object is 102 * {@link String } 103 * 104 */ 105 public void setName(String value) { 106 this.name = value; 107 } 108 109 /** 110 * Gets the value of the shortname property. 111 * 112 * @return 113 * possible object is 114 * {@link String } 115 * 116 */ 117 public String getShortname() { 118 return shortname; 119 } 120 121 /** 122 * Sets the value of the shortname property. 123 * 124 * @param value 125 * allowed object is 126 * {@link String } 127 * 128 */ 129 public void setShortname(String value) { 130 this.shortname = value; 131 } 132 133 /** 134 * Gets the value of the hackystatserviceRefid property. 135 * 136 * @return 137 * possible object is 138 * {@link String } 139 * 140 */ 141 public String getHackystatserviceRefid() { 142 return hackystatserviceRefid; 143 } 144 145 /** 146 * Sets the value of the hackystatserviceRefid property. 147 * 148 * @param value 149 * allowed object is 150 * {@link String } 151 * 152 */ 153 public void setHackystatserviceRefid(String value) { 154 this.hackystatserviceRefid = value; 155 } 156 157 /** 158 * Gets the value of the projectownerRefid property. 159 * 160 * @return 161 * possible object is 162 * {@link String } 163 * 164 */ 165 public String getProjectownerRefid() { 166 return projectownerRefid; 167 } 168 169 /** 170 * Sets the value of the projectownerRefid property. 171 * 172 * @param value 173 * allowed object is 174 * {@link String } 175 * 176 */ 177 public void setProjectownerRefid(String value) { 178 this.projectownerRefid = value; 179 } 180 181 /** 182 * Gets the value of the authuserRefid property. 183 * 184 * @return 185 * possible object is 186 * {@link String } 187 * 188 */ 189 public String getAuthuserRefid() { 190 return authuserRefid; 191 } 192 193 /** 194 * Sets the value of the authuserRefid property. 195 * 196 * @param value 197 * allowed object is 198 * {@link String } 199 * 200 */ 201 public void setAuthuserRefid(String value) { 202 this.authuserRefid = value; 203 } 204 205 /** 206 * Gets the value of the mailinglist property. 207 * 208 * @return 209 * possible object is 210 * {@link String } 211 * 212 */ 213 public String getMailinglist() { 214 return mailinglist; 215 } 216 217 /** 218 * Sets the value of the mailinglist property. 219 * 220 * @param value 221 * allowed object is 222 * {@link String } 223 * 224 */ 225 public void setMailinglist(String value) { 226 this.mailinglist = value; 227 } 228 229 }