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.06.27 at 11:37:07 AM GMT-10:00 006 // 007 008 009 package org.hackystat.sensorbase.resource.sensordatatypes.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.XmlElement; 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 * <sequence> 029 * <element ref="{}Key"/> 030 * <element ref="{}Value"/> 031 * </sequence> 032 * </restriction> 033 * </complexContent> 034 * </complexType> 035 * </pre> 036 * 037 * 038 */ 039 @XmlAccessorType(XmlAccessType.FIELD) 040 @XmlType(name = "", propOrder = { 041 "key", 042 "value" 043 }) 044 @XmlRootElement(name = "Property") 045 public class Property 046 implements Serializable 047 { 048 049 private final static long serialVersionUID = 12343L; 050 @XmlElement(name = "Key", required = true) 051 protected String key; 052 @XmlElement(name = "Value", required = true) 053 protected String value; 054 055 /** 056 * Gets the value of the key property. 057 * 058 * @return 059 * possible object is 060 * {@link String } 061 * 062 */ 063 public String getKey() { 064 return key; 065 } 066 067 /** 068 * Sets the value of the key property. 069 * 070 * @param value 071 * allowed object is 072 * {@link String } 073 * 074 */ 075 public void setKey(String value) { 076 this.key = value; 077 } 078 079 public boolean isSetKey() { 080 return (this.key!= null); 081 } 082 083 /** 084 * Gets the value of the value property. 085 * 086 * @return 087 * possible object is 088 * {@link String } 089 * 090 */ 091 public String getValue() { 092 return value; 093 } 094 095 /** 096 * Sets the value of the value property. 097 * 098 * @param value 099 * allowed object is 100 * {@link String } 101 * 102 */ 103 public void setValue(String value) { 104 this.value = value; 105 } 106 107 public boolean isSetValue() { 108 return (this.value!= null); 109 } 110 111 }