de.elnarion.xwiki.rest.model.jaxb.SearchResult 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 java.util.Calendar;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for SearchResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <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="title" 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="modified" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="author" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="authorName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="version" 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"/>
* <element name="filename" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="score" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
* <element name="object" type="{http://www.xwiki.org}Object" minOccurs="0"/>
* <element name="hierarchy" type="{http://www.xwiki.org}Hierarchy" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SearchResult", propOrder = {
"type",
"id",
"pageFullName",
"title",
"wiki",
"space",
"pageName",
"modified",
"author",
"authorName",
"version",
"language",
"className",
"objectNumber",
"filename",
"score",
"object",
"hierarchy"
})
@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 title;
@XmlElement(required = true)
protected String wiki;
@XmlElement(required = true)
protected String space;
@XmlElement(required = true)
protected String pageName;
@XmlElement(required = true, type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar modified;
@XmlElement(required = true)
protected String author;
@XmlElement(required = true)
protected String authorName;
@XmlElement(required = true)
protected String version;
@XmlElement(required = true)
protected String language;
protected String className;
protected Integer objectNumber;
protected String filename;
protected Float score;
protected Object object;
protected Hierarchy hierarchy;
/**
* 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 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 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 modified property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getModified() {
return modified;
}
/**
* Sets the value of the modified property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setModified(Calendar value) {
this.modified = 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 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 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;
}
/**
* Gets the value of the filename property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFilename() {
return filename;
}
/**
* Sets the value of the filename property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFilename(String value) {
this.filename = value;
}
/**
* Gets the value of the score property.
*
* @return
* possible object is
* {@link Float }
*
*/
public Float getScore() {
return score;
}
/**
* Sets the value of the score property.
*
* @param value
* allowed object is
* {@link Float }
*
*/
public void setScore(Float value) {
this.score = value;
}
/**
* Gets the value of the object property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getObject() {
return object;
}
/**
* Sets the value of the object property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setObject(Object value) {
this.object = value;
}
/**
* Gets the value of the hierarchy property.
*
* @return
* possible object is
* {@link Hierarchy }
*
*/
public Hierarchy getHierarchy() {
return hierarchy;
}
/**
* Sets the value of the hierarchy property.
*
* @param value
* allowed object is
* {@link Hierarchy }
*
*/
public void setHierarchy(Hierarchy value) {
this.hierarchy = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy