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

de.elnarion.xwiki.rest.model.jaxb.ObjectSummary 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 ObjectSummary complex type. * *

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

 * <complexType name="ObjectSummary">
 *   <complexContent>
 *     <extension base="{http://www.xwiki.org}LinkCollection">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="guid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pageId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pageVersion" 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="pageName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pageAuthor" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pageAuthorName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="className" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="headline" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ObjectSummary", propOrder = { "id", "guid", "pageId", "pageVersion", "wiki", "space", "pageName", "pageAuthor", "pageAuthorName", "className", "number", "headline" }) @XmlSeeAlso({ Object.class }) public class ObjectSummary extends LinkCollection { @XmlElement(required = true) protected String id; @XmlElement(required = true) protected String guid; @XmlElement(required = true) protected String pageId; @XmlElement(required = true) protected String pageVersion; @XmlElement(required = true) protected String wiki; @XmlElement(required = true) protected String space; @XmlElement(required = true) protected String pageName; @XmlElement(required = true) protected String pageAuthor; @XmlElement(required = true) protected String pageAuthorName; @XmlElement(required = true) protected String className; protected int number; @XmlElement(required = true) protected String headline; /** * 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 guid property. * * @return * possible object is * {@link String } * */ public String getGuid() { return guid; } /** * Sets the value of the guid property. * * @param value * allowed object is * {@link String } * */ public void setGuid(String value) { this.guid = value; } /** * Gets the value of the pageId property. * * @return * possible object is * {@link String } * */ public String getPageId() { return pageId; } /** * Sets the value of the pageId property. * * @param value * allowed object is * {@link String } * */ public void setPageId(String value) { this.pageId = value; } /** * Gets the value of the pageVersion property. * * @return * possible object is * {@link String } * */ public String getPageVersion() { return pageVersion; } /** * Sets the value of the pageVersion property. * * @param value * allowed object is * {@link String } * */ public void setPageVersion(String value) { this.pageVersion = 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 pageName property. * * @return * possible object is * {@link String } * */ public String getPageName() { return pageName; } /** * Sets the value of the pageName property. * * @param value * allowed object is * {@link String } * */ public void setPageName(String value) { this.pageName = value; } /** * Gets the value of the pageAuthor property. * * @return * possible object is * {@link String } * */ public String getPageAuthor() { return pageAuthor; } /** * Sets the value of the pageAuthor property. * * @param value * allowed object is * {@link String } * */ public void setPageAuthor(String value) { this.pageAuthor = value; } /** * Gets the value of the pageAuthorName property. * * @return * possible object is * {@link String } * */ public String getPageAuthorName() { return pageAuthorName; } /** * Sets the value of the pageAuthorName property. * * @param value * allowed object is * {@link String } * */ public void setPageAuthorName(String value) { this.pageAuthorName = value; } /** * Gets the value of the className property. * * @return * possible object is * {@link String } * */ public String getClassName() { return className; } /** * Sets the value of the className property. * * @param value * allowed object is * {@link String } * */ public void setClassName(String value) { this.className = value; } /** * Gets the value of the number property. * */ public int getNumber() { return number; } /** * Sets the value of the number property. * */ public void setNumber(int value) { this.number = value; } /** * Gets the value of the headline property. * * @return * possible object is * {@link String } * */ public String getHeadline() { return headline; } /** * Sets the value of the headline property. * * @param value * allowed object is * {@link String } * */ public void setHeadline(String value) { this.headline = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy