org.kie.remote.jaxb.gen.Comment Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.02.22 at 05:32:12 PM CET
//
package org.kie.remote.jaxb.gen;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import org.kie.api.command.Command;
/**
* Java class for jaxbComment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="jaxbComment">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="added-by" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="added-at" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "jaxbComment", propOrder = {
"id",
"text",
"addedBy",
"addedAt"
})
@XmlRootElement(name = "comment")
public class Comment
extends Object
{
protected Long id;
protected String text;
@XmlElement(name = "added-by")
protected String addedBy;
@XmlElement(name = "added-at")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar addedAt;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setId(Long value) {
this.id = value;
}
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
/**
* Gets the value of the addedBy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddedBy() {
return addedBy;
}
/**
* Sets the value of the addedBy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddedBy(String value) {
this.addedBy = value;
}
/**
* Gets the value of the addedAt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAddedAt() {
return addedAt;
}
/**
* Sets the value of the addedAt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setAddedAt(XMLGregorianCalendar value) {
this.addedAt = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy