package com.ECS.client.jax;
import java.math.BigInteger;
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;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="TotalExcerpts" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/>
* <element name="Excerpt" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Checksum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="PageType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="PageNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="SequenceNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"totalExcerpts",
"excerpt"
})
@XmlRootElement(name = "SearchInside")
public class SearchInside {
@XmlElement(name = "TotalExcerpts")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger totalExcerpts;
@XmlElement(name = "Excerpt")
protected SearchInside.Excerpt excerpt;
/**
* Gets the value of the totalExcerpts property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getTotalExcerpts() {
return totalExcerpts;
}
/**
* Sets the value of the totalExcerpts property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setTotalExcerpts(BigInteger value) {
this.totalExcerpts = value;
}
/**
* Gets the value of the excerpt property.
*
* @return
* possible object is
* {@link SearchInside.Excerpt }
*
*/
public SearchInside.Excerpt getExcerpt() {
return excerpt;
}
/**
* Sets the value of the excerpt property.
*
* @param value
* allowed object is
* {@link SearchInside.Excerpt }
*
*/
public void setExcerpt(SearchInside.Excerpt value) {
this.excerpt = value;
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Checksum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="PageType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="PageNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="SequenceNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"checksum",
"pageType",
"pageNumber",
"sequenceNumber",
"text"
})
public static class Excerpt {
@XmlElement(name = "Checksum")
protected String checksum;
@XmlElement(name = "PageType")
protected String pageType;
@XmlElement(name = "PageNumber")
protected String pageNumber;
@XmlElement(name = "SequenceNumber")
protected String sequenceNumber;
@XmlElement(name = "Text")
protected String text;
/**
* Gets the value of the checksum property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChecksum() {
return checksum;
}
/**
* Sets the value of the checksum property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChecksum(String value) {
this.checksum = value;
}
/**
* Gets the value of the pageType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPageType() {
return pageType;
}
/**
* Sets the value of the pageType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPageType(String value) {
this.pageType = value;
}
/**
* Gets the value of the pageNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPageNumber() {
return pageNumber;
}
/**
* Sets the value of the pageNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPageNumber(String value) {
this.pageNumber = value;
}
/**
* Gets the value of the sequenceNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSequenceNumber() {
return sequenceNumber;
}
/**
* Sets the value of the sequenceNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSequenceNumber(String value) {
this.sequenceNumber = value;
}
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
}
}