// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-792 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.04.07 at 12:06:52 PM GMT+05:30 // package com.ebay.marketplace.search.v1.services; 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for BestMatchSortTypeBase complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="BestMatchSortTypeBase"> * <complexContent> * <extension base="{http://www.ebay.com/marketplace/search/v1/services}SortTypeBase"> * <sequence> * <element name="profileId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="shiptocty" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="zipcode" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="config" type="{http://www.ebay.com/marketplace/search/v1/services}Property" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BestMatchSortTypeBase", propOrder = { "profileId", "shiptocty", "zipcode", "config" }) @XmlSeeAlso({ BaseImageSimilaritySortTypeBase.class }) public class BestMatchSortTypeBase extends SortTypeBase { protected Integer profileId; protected int shiptocty; @XmlElement(required = true) protected String zipcode; protected List<Property> config; /** * Gets the value of the profileId property. * * @return * possible object is * {@link Integer } * */ public Integer getProfileId() { return profileId; } /** * Sets the value of the profileId property. * * @param value * allowed object is * {@link Integer } * */ public void setProfileId(Integer value) { this.profileId = value; } /** * Gets the value of the shiptocty property. * */ public int getShiptocty() { return shiptocty; } /** * Sets the value of the shiptocty property. * */ public void setShiptocty(int value) { this.shiptocty = value; } /** * Gets the value of the zipcode property. * * @return * possible object is * {@link String } * */ public String getZipcode() { return zipcode; } /** * Sets the value of the zipcode property. * * @param value * allowed object is * {@link String } * */ public void setZipcode(String value) { this.zipcode = value; } /** * Gets the value of the config property. * * <p> * 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 <CODE>set</CODE> method for the config property. * * <p> * For example, to add a new item, do as follows: * <pre> * getConfig().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Property } * * */ public List<Property> getConfig() { if (config == null) { config = new ArrayList<Property>(); } return this.config; } }