// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, // vJAXB 2.1.10 in JDK 6 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.02.23 at 06:11:31 PM PST // package com.mindprod.poster.soapresponse; 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; /** *

Java class for anonymous complex type. *

*

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

*

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{}Total_No_Of_Products"/>
 *         <element ref="{}No_Of_Products_In_Current_Page"/>
 *         <element ref="{}Current_PageNumber"/>
 *         <element ref="{}Products"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @SuppressWarnings( { "JavaDoc" } ) @XmlAccessorType( XmlAccessType.FIELD ) @XmlType( name = "", propOrder = { "totalNoOfProducts", "noOfProductsInCurrentPage", "currentPageNumber", "products" } ) @XmlRootElement( name = "Search_Result" ) public class SearchResult { @XmlElement( name = "Products", required = true ) private Products products; @XmlElement( name = "Current_PageNumber" ) private int currentPageNumber; @XmlElement( name = "No_Of_Products_In_Current_Page" ) private int noOfProductsInCurrentPage; @XmlElement( name = "Total_No_Of_Products" ) private int totalNoOfProducts; /** * Gets the value of the currentPageNumber property. */ public int getCurrentPageNumber() { return currentPageNumber; } /** * Sets the value of the currentPageNumber property. */ public void setCurrentPageNumber( int value ) { this.currentPageNumber = value; } /** * Gets the value of the noOfProductsInCurrentPage property. */ public int getNoOfProductsInCurrentPage() { return noOfProductsInCurrentPage; } /** * Sets the value of the noOfProductsInCurrentPage property. */ public void setNoOfProductsInCurrentPage( int value ) { this.noOfProductsInCurrentPage = value; } /** * Gets the value of the products property. * * @return possible object is * {@link Products } */ public Products getProducts() { return products; } /** * Sets the value of the products property. * * @param value allowed object is * {@link Products } */ public void setProducts( Products value ) { this.products = value; } /** * Gets the value of the totalNoOfProducts property. */ public int getTotalNoOfProducts() { return totalNoOfProducts; } /** * Sets the value of the totalNoOfProducts property. */ public void setTotalNoOfProducts( int value ) { this.totalNoOfProducts = value; } }