Xwiki.java

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.10.23 at 07:13:20 AM UTC 
//


package org.exoplatform.wiki.service.rest.model;

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;


/**
 * <p>Java class for XWiki complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="XWiki"&gt;
 *   &lt;complexContent&gt;
 *     &lt;extension base="{http://www.xwiki.org}LinkCollection"&gt;
 *       &lt;sequence&gt;
 *         &lt;element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
 *         &lt;element name="syntaxes" type="{http://www.xwiki.org}Syntaxes"/&gt;
 *       &lt;/sequence&gt;
 *     &lt;/extension&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "XWiki", propOrder = {
    "version",
    "syntaxes"
})
@XmlRootElement(name = "xwiki")
public class Xwiki
    extends LinkCollection
{

    @XmlElement(required = true)
    protected String version;
    @XmlElement(required = true)
    protected Syntaxes syntaxes;

    /**
     * Gets the value of the version property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getVersion() {
        return version;
    }

    /**
     * Sets the value of the version property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setVersion(String value) {
        this.version = value;
    }

    /**
     * Gets the value of the syntaxes property.
     * 
     * @return
     *     possible object is
     *     {@link Syntaxes }
     *     
     */
    public Syntaxes getSyntaxes() {
        return syntaxes;
    }

    /**
     * Sets the value of the syntaxes property.
     * 
     * @param value
     *     allowed object is
     *     {@link Syntaxes }
     *     
     */
    public void setSyntaxes(Syntaxes value) {
        this.syntaxes = value;
    }

}