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

ebay.apis.shopping.eblbasecomponents.FindPopularItemsRequestType 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;


/**
 * 
 * 				Find popular items
 * 			
 * 
 * 

Java class for FindPopularItemsRequestType complex type. * *

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

 * <complexType name="FindPopularItemsRequestType">
 *   <complexContent>
 *     <extension base="{urn:ebay:apis:eBLBaseComponents}AbstractRequestType">
 *       <sequence>
 *         <element name="CategoryID" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="QueryKeywords" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="CategoryIDExclude" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="MaxEntries" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FindPopularItemsRequestType", propOrder = { "categoryID", "queryKeywords", "categoryIDExclude", "maxEntries" }) public class FindPopularItemsRequestType extends AbstractRequestType { @XmlElement(name = "CategoryID") protected List categoryID; @XmlElement(name = "QueryKeywords") protected String queryKeywords; @XmlElement(name = "CategoryIDExclude") protected List categoryIDExclude; @XmlElement(name = "MaxEntries") protected Integer maxEntries; /** * Gets the value of the categoryID 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 categoryID property. * *

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

     *    getCategoryID().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getCategoryID() { if (categoryID == null) { categoryID = new ArrayList(); } return this.categoryID; } /** * Gets the value of the queryKeywords property. * * @return * possible object is * {@link String } * */ public String getQueryKeywords() { return queryKeywords; } /** * Sets the value of the queryKeywords property. * * @param value * allowed object is * {@link String } * */ public void setQueryKeywords(String value) { this.queryKeywords = value; } /** * Gets the value of the categoryIDExclude 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 categoryIDExclude property. * *

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

     *    getCategoryIDExclude().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getCategoryIDExclude() { if (categoryIDExclude == null) { categoryIDExclude = new ArrayList(); } return this.categoryIDExclude; } /** * Gets the value of the maxEntries property. * * @return * possible object is * {@link Integer } * */ public Integer getMaxEntries() { return maxEntries; } /** * Sets the value of the maxEntries property. * * @param value * allowed object is * {@link Integer } * */ public void setMaxEntries(Integer value) { this.maxEntries = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy