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

de.elnarion.xwiki.rest.model.jaxb.PageSummary 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for PageSummary complex type. * *

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

 * <complexType name="PageSummary">
 *   <complexContent>
 *     <extension base="{http://www.xwiki.org}LinkCollection">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="wiki" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="space" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="rawTitle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="parent" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="parentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="author" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="authorName" 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"/>
 *         <element name="translations" type="{http://www.xwiki.org}Translations"/>
 *         <element name="syntax" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PageSummary", propOrder = { "id", "fullName", "wiki", "space", "name", "title", "rawTitle", "parent", "parentId", "version", "author", "authorName", "xwikiRelativeUrl", "xwikiAbsoluteUrl", "translations", "syntax" }) @XmlSeeAlso({ Page.class }) public class PageSummary extends LinkCollection { @XmlElement(required = true) protected String id; @XmlElement(required = true) protected String fullName; @XmlElement(required = true) protected String wiki; @XmlElement(required = true) protected String space; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String title; @XmlElement(required = true) protected String rawTitle; @XmlElement(required = true) protected String parent; @XmlElement(required = true) protected String parentId; @XmlElement(required = true) protected String version; @XmlElement(required = true) protected String author; @XmlElement(required = true) protected String authorName; @XmlElement(required = true) protected String xwikiRelativeUrl; @XmlElement(required = true) protected String xwikiAbsoluteUrl; @XmlElement(required = true) protected Translations translations; @XmlElement(required = true) protected String syntax; /** * 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 fullName property. * * @return * possible object is * {@link String } * */ public String getFullName() { return fullName; } /** * Sets the value of the fullName property. * * @param value * allowed object is * {@link String } * */ public void setFullName(String value) { this.fullName = 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 space property. * * @return * possible object is * {@link String } * */ public String getSpace() { return space; } /** * Sets the value of the space property. * * @param value * allowed object is * {@link String } * */ public void setSpace(String value) { this.space = 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 title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the rawTitle property. * * @return * possible object is * {@link String } * */ public String getRawTitle() { return rawTitle; } /** * Sets the value of the rawTitle property. * * @param value * allowed object is * {@link String } * */ public void setRawTitle(String value) { this.rawTitle = value; } /** * Gets the value of the parent property. * * @return * possible object is * {@link String } * */ public String getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link String } * */ public void setParent(String value) { this.parent = value; } /** * Gets the value of the parentId property. * * @return * possible object is * {@link String } * */ public String getParentId() { return parentId; } /** * Sets the value of the parentId property. * * @param value * allowed object is * {@link String } * */ public void setParentId(String value) { this.parentId = value; } /** * 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 author property. * * @return * possible object is * {@link String } * */ public String getAuthor() { return author; } /** * Sets the value of the author property. * * @param value * allowed object is * {@link String } * */ public void setAuthor(String value) { this.author = value; } /** * Gets the value of the authorName property. * * @return * possible object is * {@link String } * */ public String getAuthorName() { return authorName; } /** * Sets the value of the authorName property. * * @param value * allowed object is * {@link String } * */ public void setAuthorName(String value) { this.authorName = 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; } /** * Gets the value of the translations property. * * @return * possible object is * {@link Translations } * */ public Translations getTranslations() { return translations; } /** * Sets the value of the translations property. * * @param value * allowed object is * {@link Translations } * */ public void setTranslations(Translations value) { this.translations = value; } /** * Gets the value of the syntax property. * * @return * possible object is * {@link String } * */ public String getSyntax() { return syntax; } /** * Sets the value of the syntax property. * * @param value * allowed object is * {@link String } * */ public void setSyntax(String value) { this.syntax = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy