package com.formulasearchengine.wikitext; import javax.annotation.Generated; import javax.xml.bind.annotation.*; import javax.xml.datatype.XMLGregorianCalendar; import java.math.BigInteger; /** * <p>Java class for LogItemType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="LogItemType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/> * <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="contributor" type="{http://www.mediawiki.org/xml/export-0.10/}ContributorType"/> * <element name="comment" type="{http://www.mediawiki.org/xml/export-0.10/}CommentType" * minOccurs="0"/> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="text" type="{http://www.mediawiki.org/xml/export-0.10/}LogTextType" * minOccurs="0"/> * <element name="logtitle" type="{http://www.w3.org/2001/XMLSchema}string" * minOccurs="0"/> * <element name="params" type="{http://www.mediawiki.org/xml/export-0.10/}LogParamsType" * minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LogItemType", namespace = "http://www.mediawiki.org/xml/export-0.10/", propOrder = { "id", "timestamp", "contributor", "comment", "type", "action", "text", "logtitle", "params" }) @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public class LogItemType { @XmlElement(namespace = "http://www.mediawiki.org/xml/export-0.10/", required = true) @XmlSchemaType(name = "positiveInteger") @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") protected BigInteger id; @XmlElement(namespace = "http://www.mediawiki.org/xml/export-0.10/", required = true) @XmlSchemaType(name = "dateTime") @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") protected XMLGregorianCalendar timestamp; @XmlElement(namespace = "http://www.mediawiki.org/xml/export-0.10/", required = true) @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") protected ContributorType contributor; @XmlElement(namespace = "http://www.mediawiki.org/xml/export-0.10/") @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") protected CommentType comment; @XmlElement(namespace = "http://www.mediawiki.org/xml/export-0.10/", required = true) @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") protected String type; @XmlElement(namespace = "http://www.mediawiki.org/xml/export-0.10/", required = true) @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") protected String action; @XmlElement(namespace = "http://www.mediawiki.org/xml/export-0.10/") @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") protected LogTextType text; @XmlElement(namespace = "http://www.mediawiki.org/xml/export-0.10/") @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") protected String logtitle; @XmlElement(namespace = "http://www.mediawiki.org/xml/export-0.10/") @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") protected LogParamsType params; /** * Gets the value of the id property. * * @return possible object is {@link BigInteger } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public BigInteger getId() { return id; } /** * Sets the value of the id property. * * @param value allowed object is {@link BigInteger } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public void setId(BigInteger value) { this.id = value; } /** * Gets the value of the timestamp property. * * @return possible object is {@link XMLGregorianCalendar } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public XMLGregorianCalendar getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * * @param value allowed object is {@link XMLGregorianCalendar } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public void setTimestamp(XMLGregorianCalendar value) { this.timestamp = value; } /** * Gets the value of the contributor property. * * @return possible object is {@link ContributorType } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public ContributorType getContributor() { return contributor; } /** * Sets the value of the contributor property. * * @param value allowed object is {@link ContributorType } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public void setContributor(ContributorType value) { this.contributor = value; } /** * Gets the value of the comment property. * * @return possible object is {@link CommentType } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public CommentType getComment() { return comment; } /** * Sets the value of the comment property. * * @param value allowed object is {@link CommentType } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public void setComment(CommentType value) { this.comment = value; } /** * Gets the value of the type property. * * @return possible object is {@link String } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public String getType() { return type; } /** * Sets the value of the type property. * * @param value allowed object is {@link String } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public void setType(String value) { this.type = value; } /** * Gets the value of the action property. * * @return possible object is {@link String } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public String getAction() { return action; } /** * Sets the value of the action property. * * @param value allowed object is {@link String } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public void setAction(String value) { this.action = value; } /** * Gets the value of the text property. * * @return possible object is {@link LogTextType } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public LogTextType getText() { return text; } /** * Sets the value of the text property. * * @param value allowed object is {@link LogTextType } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public void setText(LogTextType value) { this.text = value; } /** * Gets the value of the logtitle property. * * @return possible object is {@link String } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public String getLogtitle() { return logtitle; } /** * Sets the value of the logtitle property. * * @param value allowed object is {@link String } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public void setLogtitle(String value) { this.logtitle = value; } /** * Gets the value of the params property. * * @return possible object is {@link LogParamsType } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public LogParamsType getParams() { return params; } /** * Sets the value of the params property. * * @param value allowed object is {@link LogParamsType } */ @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-10-26T02:56:58+01:00", comments = "JAXB RI v2.2.8-b130911.1802") public void setParams(LogParamsType value) { this.params = value; } }