Package org.xwiki.rest.model.jaxb
Class Xwiki
- java.lang.Object
-
- org.xwiki.rest.model.jaxb.LinkCollection
-
- org.xwiki.rest.model.jaxb.Xwiki
-
public class Xwiki extends LinkCollection
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>
-
-
Constructor Summary
Constructors Constructor Description Xwiki()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Syntaxes
getSyntaxes()
Gets the value of the syntaxes property.String
getVersion()
Gets the value of the version property.void
setSyntaxes(Syntaxes value)
Sets the value of the syntaxes property.void
setVersion(String value)
Sets the value of the version property.Xwiki
withLinks(Collection<Link> values)
Xwiki
withLinks(Link... values)
Xwiki
withSyntaxes(Syntaxes value)
Xwiki
withVersion(String value)
-
Methods inherited from class org.xwiki.rest.model.jaxb.LinkCollection
getLinks
-
-
-
-
Method Detail
-
getVersion
public String getVersion()
Gets the value of the version property.- Returns:
- possible object is
String
-
setVersion
public void setVersion(String value)
Sets the value of the version property.- Parameters:
value
- allowed object isString
-
getSyntaxes
public Syntaxes getSyntaxes()
Gets the value of the syntaxes property.- Returns:
- possible object is
Syntaxes
-
setSyntaxes
public void setSyntaxes(Syntaxes value)
Sets the value of the syntaxes property.- Parameters:
value
- allowed object isSyntaxes
-
withLinks
public Xwiki withLinks(Link... values)
- Overrides:
withLinks
in classLinkCollection
-
withLinks
public Xwiki withLinks(Collection<Link> values)
- Overrides:
withLinks
in classLinkCollection
-
-