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:34 AM GMT-10:00 006 // 007 008 009 package org.hackystat.telemetry.service.resource.chart.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.XmlType; 017 018 019 /** 020 * <p>Java class for anonymous complex type. 021 * 022 * <p>The following schema fragment specifies the expected content contained within this class. 023 * 024 * <pre> 025 * <complexType> 026 * <complexContent> 027 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 028 * <attribute ref="{}Name use="required""/> 029 * <attribute ref="{}Value use="required""/> 030 * </restriction> 031 * </complexContent> 032 * </complexType> 033 * </pre> 034 * 035 * 036 */ 037 @XmlAccessorType(XmlAccessType.FIELD) 038 @XmlType(name = "") 039 @XmlRootElement(name = "Parameter") 040 public class Parameter 041 implements Serializable 042 { 043 044 private final static long serialVersionUID = 12343L; 045 @XmlAttribute(name = "Name", required = true) 046 protected String name; 047 @XmlAttribute(name = "Value", required = true) 048 protected String value; 049 050 /** 051 * Gets the value of the name property. 052 * 053 * @return 054 * possible object is 055 * {@link String } 056 * 057 */ 058 public String getName() { 059 return name; 060 } 061 062 /** 063 * Sets the value of the name property. 064 * 065 * @param value 066 * allowed object is 067 * {@link String } 068 * 069 */ 070 public void setName(String value) { 071 this.name = value; 072 } 073 074 public boolean isSetName() { 075 return (this.name!= null); 076 } 077 078 /** 079 * Gets the value of the value property. 080 * 081 * @return 082 * possible object is 083 * {@link String } 084 * 085 */ 086 public String getValue() { 087 return value; 088 } 089 090 /** 091 * Sets the value of the value property. 092 * 093 * @param value 094 * allowed object is 095 * {@link String } 096 * 097 */ 098 public void setValue(String value) { 099 this.value = value; 100 } 101 102 public boolean isSetValue() { 103 return (this.value!= null); 104 } 105 106 }