All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ebay.apis.shopping.eblbasecomponents.FindPopularSearchesResponseType Maven / Gradle / Ivy

Go to download

This Java client enables you to use Java to make API calls in the eBay Shopping API, which is an XML API. This maven build is simply the Apache CXF generated client code for the Shopping API WSDL.

The newest version!

package ebay.apis.shopping.eblbasecomponents;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 * 				Contains the keyword data for the requested categories. A category's data are contained
 * 				in a CategoryArrayType object if there is no error (one or more CategoryType objects).
 * 				Returns category data as well as related search data.
 * 			
 * 
 * 

Java class for FindPopularSearchesResponseType complex type. * *

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

 * <complexType name="FindPopularSearchesResponseType">
 *   <complexContent>
 *     <extension base="{urn:ebay:apis:eBLBaseComponents}AbstractResponseType">
 *       <sequence>
 *         <element name="PopularSearchResult" type="{urn:ebay:apis:eBLBaseComponents}PopularSearchesType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="PageNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="TotalPages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindPopularSearchesResponseType", propOrder = { "popularSearchResult", "pageNumber", "totalPages" }) public class FindPopularSearchesResponseType extends AbstractResponseType { @XmlElement(name = "PopularSearchResult") protected List popularSearchResult; @XmlElement(name = "PageNumber") protected Integer pageNumber; @XmlElement(name = "TotalPages") protected Integer totalPages; /** * Gets the value of the popularSearchResult property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the popularSearchResult property. * *

* For example, to add a new item, do as follows: *

     *    getPopularSearchResult().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PopularSearchesType } * * */ public List getPopularSearchResult() { if (popularSearchResult == null) { popularSearchResult = new ArrayList(); } return this.popularSearchResult; } /** * Gets the value of the pageNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getPageNumber() { return pageNumber; } /** * Sets the value of the pageNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setPageNumber(Integer value) { this.pageNumber = value; } /** * Gets the value of the totalPages property. * * @return * possible object is * {@link Integer } * */ public Integer getTotalPages() { return totalPages; } /** * Sets the value of the totalPages property. * * @param value * allowed object is * {@link Integer } * */ public void setTotalPages(Integer value) { this.totalPages = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy