All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.elnarion.xwiki.rest.model.jaxb.Xwiki Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.04.18 at 06:54:28 PM CEST 
//


package de.elnarion.xwiki.rest.model.jaxb;

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;


/**
 * 

Java class for XWiki complex type. * *

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

 * <complexType name="XWiki">
 *   <complexContent>
 *     <extension base="{http://www.xwiki.org}LinkCollection">
 *       <sequence>
 *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="syntaxes" type="{http://www.xwiki.org}Syntaxes"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy