ObjectSummary.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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for ObjectSummary complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <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="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="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>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ObjectSummary", propOrder = {
"id",
"guid",
"pageId",
"wiki",
"space",
"pageName",
"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 wiki;
@XmlElement(required = true)
protected String space;
@XmlElement(required = true)
protected String pageName;
@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 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 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;
}
}