Space.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 Space complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <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>
* </pre>
*
*
*/
@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;
}
}