// // 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.08.20 at 08:39:39 dop. CEST // package net.sf.istcontract.aws.sensor.ontology; 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="senderAgentID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="receiverAgentID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="performativeClassName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="idDialog" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="replyWith" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="inReplyTo" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="protocolClassName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
 *         <element name="timeStamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "senderAgentID", "receiverAgentID", "performativeClassName", "idDialog", "replyWith", "inReplyTo", "protocolClassName", "content", "timeStamp" }) @XmlRootElement(name = "ACLMessagingReport") public class ACLMessagingReport { @XmlElement(required = true) protected String senderAgentID; @XmlElement(required = true) protected String receiverAgentID; @XmlElement(required = true) protected String performativeClassName; @XmlElement(required = true) protected String idDialog; @XmlElement(required = true) protected String replyWith; @XmlElement(required = true) protected String inReplyTo; @XmlElement(required = true) protected String protocolClassName; @XmlElement(required = true) protected Object content; @XmlElement(required = true) protected XMLGregorianCalendar timeStamp; /** * Gets the value of the senderAgentID property. * * @return * possible object is * {@link String } * */ public String getSenderAgentID() { return senderAgentID; } /** * Sets the value of the senderAgentID property. * * @param value * allowed object is * {@link String } * */ public void setSenderAgentID(String value) { this.senderAgentID = value; } /** * Gets the value of the receiverAgentID property. * * @return * possible object is * {@link String } * */ public String getReceiverAgentID() { return receiverAgentID; } /** * Sets the value of the receiverAgentID property. * * @param value * allowed object is * {@link String } * */ public void setReceiverAgentID(String value) { this.receiverAgentID = value; } /** * Gets the value of the performativeClassName property. * * @return * possible object is * {@link String } * */ public String getPerformativeClassName() { return performativeClassName; } /** * Sets the value of the performativeClassName property. * * @param value * allowed object is * {@link String } * */ public void setPerformativeClassName(String value) { this.performativeClassName = value; } /** * Gets the value of the idDialog property. * * @return * possible object is * {@link String } * */ public String getIdDialog() { return idDialog; } /** * Sets the value of the idDialog property. * * @param value * allowed object is * {@link String } * */ public void setIdDialog(String value) { this.idDialog = value; } /** * Gets the value of the replyWith property. * * @return * possible object is * {@link String } * */ public String getReplyWith() { return replyWith; } /** * Sets the value of the replyWith property. * * @param value * allowed object is * {@link String } * */ public void setReplyWith(String value) { this.replyWith = value; } /** * Gets the value of the inReplyTo property. * * @return * possible object is * {@link String } * */ public String getInReplyTo() { return inReplyTo; } /** * Sets the value of the inReplyTo property. * * @param value * allowed object is * {@link String } * */ public void setInReplyTo(String value) { this.inReplyTo = value; } /** * Gets the value of the protocolClassName property. * * @return * possible object is * {@link String } * */ public String getProtocolClassName() { return protocolClassName; } /** * Sets the value of the protocolClassName property. * * @param value * allowed object is * {@link String } * */ public void setProtocolClassName(String value) { this.protocolClassName = value; } /** * Gets the value of the content property. * * @return * possible object is * {@link Object } * */ public Object getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link Object } * */ public void setContent(Object 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; } }