SearchResult.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 SearchResult complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="SearchResult">
* <complexContent>
* <extension base="{http://www.xwiki.org}LinkCollection">
* <sequence>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="pageFullName" 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="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="className" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="objectNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SearchResult", propOrder = {
"type",
"id",
"pageFullName",
"wiki",
"space",
"pageName",
"language",
"className",
"objectNumber"
})
@XmlRootElement(name = "searchResult")
public class SearchResult
extends LinkCollection
{
@XmlElement(required = true)
protected String type;
@XmlElement(required = true)
protected String id;
@XmlElement(required = true)
protected String pageFullName;
@XmlElement(required = true)
protected String wiki;
@XmlElement(required = true)
protected String space;
@XmlElement(required = true)
protected String pageName;
@XmlElement(required = true)
protected String language;
protected String className;
protected Integer objectNumber;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* 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 pageFullName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPageFullName() {
return pageFullName;
}
/**
* Sets the value of the pageFullName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPageFullName(String value) {
this.pageFullName = 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 language property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguage() {
return language;
}
/**
* Sets the value of the language property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguage(String value) {
this.language = 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 objectNumber property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getObjectNumber() {
return objectNumber;
}
/**
* Sets the value of the objectNumber property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setObjectNumber(Integer value) {
this.objectNumber = value;
}
}