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.15 at 10:02:35 AM GMT-10:00 006 // 007 008 009 package org.hackystat.telemetry.service.prefetch.jaxb; 010 011 import javax.xml.bind.annotation.XmlAccessType; 012 import javax.xml.bind.annotation.XmlAccessorType; 013 import javax.xml.bind.annotation.XmlElement; 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 * <sequence> 028 * <element ref="{}ChartName"/> 029 * <element ref="{}ChartParameters" minOccurs="0"/> 030 * <element ref="{}ProjectName"/> 031 * <element ref="{}ProjectOwner"/> 032 * <element ref="{}StartTime"/> 033 * <element ref="{}AuthorizedUserName"/> 034 * <element ref="{}AuthorizedUserPassword"/> 035 * </sequence> 036 * </restriction> 037 * </complexContent> 038 * </complexType> 039 * </pre> 040 * 041 * 042 */ 043 @XmlAccessorType(XmlAccessType.FIELD) 044 @XmlType(name = "", propOrder = { 045 "chartName", 046 "chartParameters", 047 "projectName", 048 "projectOwner", 049 "startTime", 050 "authorizedUserName", 051 "authorizedUserPassword" 052 }) 053 @XmlRootElement(name = "PrefetchChart") 054 public class PrefetchChart { 055 056 @XmlElement(name = "ChartName", required = true) 057 protected String chartName; 058 @XmlElement(name = "ChartParameters") 059 protected String chartParameters; 060 @XmlElement(name = "ProjectName", required = true) 061 protected String projectName; 062 @XmlElement(name = "ProjectOwner", required = true) 063 protected String projectOwner; 064 @XmlElement(name = "StartTime", required = true) 065 protected String startTime; 066 @XmlElement(name = "AuthorizedUserName", required = true) 067 protected String authorizedUserName; 068 @XmlElement(name = "AuthorizedUserPassword", required = true) 069 protected String authorizedUserPassword; 070 071 /** 072 * Gets the value of the chartName property. 073 * 074 * @return 075 * possible object is 076 * {@link String } 077 * 078 */ 079 public String getChartName() { 080 return chartName; 081 } 082 083 /** 084 * Sets the value of the chartName property. 085 * 086 * @param value 087 * allowed object is 088 * {@link String } 089 * 090 */ 091 public void setChartName(String value) { 092 this.chartName = value; 093 } 094 095 /** 096 * Gets the value of the chartParameters property. 097 * 098 * @return 099 * possible object is 100 * {@link String } 101 * 102 */ 103 public String getChartParameters() { 104 return chartParameters; 105 } 106 107 /** 108 * Sets the value of the chartParameters property. 109 * 110 * @param value 111 * allowed object is 112 * {@link String } 113 * 114 */ 115 public void setChartParameters(String value) { 116 this.chartParameters = value; 117 } 118 119 /** 120 * Gets the value of the projectName property. 121 * 122 * @return 123 * possible object is 124 * {@link String } 125 * 126 */ 127 public String getProjectName() { 128 return projectName; 129 } 130 131 /** 132 * Sets the value of the projectName property. 133 * 134 * @param value 135 * allowed object is 136 * {@link String } 137 * 138 */ 139 public void setProjectName(String value) { 140 this.projectName = value; 141 } 142 143 /** 144 * Gets the value of the projectOwner property. 145 * 146 * @return 147 * possible object is 148 * {@link String } 149 * 150 */ 151 public String getProjectOwner() { 152 return projectOwner; 153 } 154 155 /** 156 * Sets the value of the projectOwner property. 157 * 158 * @param value 159 * allowed object is 160 * {@link String } 161 * 162 */ 163 public void setProjectOwner(String value) { 164 this.projectOwner = value; 165 } 166 167 /** 168 * Gets the value of the startTime property. 169 * 170 * @return 171 * possible object is 172 * {@link String } 173 * 174 */ 175 public String getStartTime() { 176 return startTime; 177 } 178 179 /** 180 * Sets the value of the startTime property. 181 * 182 * @param value 183 * allowed object is 184 * {@link String } 185 * 186 */ 187 public void setStartTime(String value) { 188 this.startTime = value; 189 } 190 191 /** 192 * Gets the value of the authorizedUserName property. 193 * 194 * @return 195 * possible object is 196 * {@link String } 197 * 198 */ 199 public String getAuthorizedUserName() { 200 return authorizedUserName; 201 } 202 203 /** 204 * Sets the value of the authorizedUserName property. 205 * 206 * @param value 207 * allowed object is 208 * {@link String } 209 * 210 */ 211 public void setAuthorizedUserName(String value) { 212 this.authorizedUserName = value; 213 } 214 215 /** 216 * Gets the value of the authorizedUserPassword property. 217 * 218 * @return 219 * possible object is 220 * {@link String } 221 * 222 */ 223 public String getAuthorizedUserPassword() { 224 return authorizedUserPassword; 225 } 226 227 /** 228 * Sets the value of the authorizedUserPassword property. 229 * 230 * @param value 231 * allowed object is 232 * {@link String } 233 * 234 */ 235 public void setAuthorizedUserPassword(String value) { 236 this.authorizedUserPassword = value; 237 } 238 239 }