de.elnarion.xwiki.rest.model.jaxb.Space 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 Space complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Space">
* <complexContent>
* <extension base="{http://www.xwiki.org}LinkCollection">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="wiki" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="home" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="xwikiRelativeUrl" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="xwikiAbsoluteUrl" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Space", propOrder = {
"id",
"wiki",
"name",
"home",
"xwikiRelativeUrl",
"xwikiAbsoluteUrl"
})
@XmlRootElement(name = "space")
public class Space
extends LinkCollection
{
@XmlElement(required = true)
protected String id;
@XmlElement(required = true)
protected String wiki;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String home;
@XmlElement(required = true)
protected String xwikiRelativeUrl;
@XmlElement(required = true)
protected String xwikiAbsoluteUrl;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the wiki property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWiki() {
return wiki;
}
/**
* Sets the value of the wiki property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWiki(String value) {
this.wiki = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the home property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHome() {
return home;
}
/**
* Sets the value of the home property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHome(String value) {
this.home = value;
}
/**
* Gets the value of the xwikiRelativeUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXwikiRelativeUrl() {
return xwikiRelativeUrl;
}
/**
* Sets the value of the xwikiRelativeUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXwikiRelativeUrl(String value) {
this.xwikiRelativeUrl = value;
}
/**
* Gets the value of the xwikiAbsoluteUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXwikiAbsoluteUrl() {
return xwikiAbsoluteUrl;
}
/**
* Sets the value of the xwikiAbsoluteUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXwikiAbsoluteUrl(String value) {
this.xwikiAbsoluteUrl = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy