// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2008.07.30 at 03:39:08 odp. CEST // package ontologies; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="messageType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="receiverName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="senderName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="timeStamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "messageType", "receiverName", "senderName", "content", "timeStamp" }) @XmlRootElement(name = "sensorBasicReport") public class SensorBasicReport { @XmlElement(required = true) protected String messageType; @XmlElement(required = true) protected String receiverName; @XmlElement(required = true) protected String senderName; @XmlElement(required = true) protected String content; @XmlElement(required = true) protected XMLGregorianCalendar timeStamp; /** * Gets the value of the messageType property. * * @return * possible object is * {@link String } * */ public String getMessageType() { return messageType; } /** * Sets the value of the messageType property. * * @param value * allowed object is * {@link String } * */ public void setMessageType(String value) { this.messageType = value; } /** * Gets the value of the receiverName property. * * @return * possible object is * {@link String } * */ public String getReceiverName() { return receiverName; } /** * Sets the value of the receiverName property. * * @param value * allowed object is * {@link String } * */ public void setReceiverName(String value) { this.receiverName = value; } /** * Gets the value of the senderName property. * * @return * possible object is * {@link String } * */ public String getSenderName() { return senderName; } /** * Sets the value of the senderName property. * * @param value * allowed object is * {@link String } * */ public void setSenderName(String value) { this.senderName = value; } /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the timeStamp property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getTimeStamp() { return timeStamp; } /** * Sets the value of the timeStamp property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setTimeStamp(XMLGregorianCalendar value) { this.timeStamp = value; } }