package com.ECS.client.jax; import java.math.BigInteger; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for VehiclePartSearchRequest complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="VehiclePartSearchRequest"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Year" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="MakeId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="ModelId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="TrimId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="BedId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="BodyStyleId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="BrakesId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="DriveTypeId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="EngineId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="MfrBodyCodeId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="SpringTypesId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="SteeringId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="TransmissionId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="WheelbaseId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="BrowseNodeId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="Brand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Count" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * <element name="FromItemId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="PartPageDirection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ResponseGroup" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VehiclePartSearchRequest", propOrder = { "year", "makeId", "modelId", "trimId", "bedId", "bodyStyleId", "brakesId", "driveTypeId", "engineId", "mfrBodyCodeId", "springTypesId", "steeringId", "transmissionId", "wheelbaseId", "browseNodeId", "brand", "count", "fromItemId", "partPageDirection", "responseGroup" }) public class VehiclePartSearchRequest { @XmlElement(name = "Year") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger year; @XmlElement(name = "MakeId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger makeId; @XmlElement(name = "ModelId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger modelId; @XmlElement(name = "TrimId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger trimId; @XmlElement(name = "BedId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger bedId; @XmlElement(name = "BodyStyleId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger bodyStyleId; @XmlElement(name = "BrakesId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger brakesId; @XmlElement(name = "DriveTypeId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger driveTypeId; @XmlElement(name = "EngineId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger engineId; @XmlElement(name = "MfrBodyCodeId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger mfrBodyCodeId; @XmlElement(name = "SpringTypesId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger springTypesId; @XmlElement(name = "SteeringId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger steeringId; @XmlElement(name = "TransmissionId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger transmissionId; @XmlElement(name = "WheelbaseId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger wheelbaseId; @XmlElement(name = "BrowseNodeId") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger browseNodeId; @XmlElement(name = "Brand") protected String brand; @XmlElement(name = "Count") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger count; @XmlElement(name = "FromItemId") protected String fromItemId; @XmlElement(name = "PartPageDirection") protected String partPageDirection; @XmlElement(name = "ResponseGroup") protected List<String> responseGroup; /** * Gets the value of the year property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getYear() { return year; } /** * Sets the value of the year property. * * @param value * allowed object is * {@link BigInteger } * */ public void setYear(BigInteger value) { this.year = value; } /** * Gets the value of the makeId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMakeId() { return makeId; } /** * Sets the value of the makeId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMakeId(BigInteger value) { this.makeId = value; } /** * Gets the value of the modelId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getModelId() { return modelId; } /** * Sets the value of the modelId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setModelId(BigInteger value) { this.modelId = value; } /** * Gets the value of the trimId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTrimId() { return trimId; } /** * Sets the value of the trimId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTrimId(BigInteger value) { this.trimId = value; } /** * Gets the value of the bedId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getBedId() { return bedId; } /** * Sets the value of the bedId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setBedId(BigInteger value) { this.bedId = value; } /** * Gets the value of the bodyStyleId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getBodyStyleId() { return bodyStyleId; } /** * Sets the value of the bodyStyleId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setBodyStyleId(BigInteger value) { this.bodyStyleId = value; } /** * Gets the value of the brakesId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getBrakesId() { return brakesId; } /** * Sets the value of the brakesId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setBrakesId(BigInteger value) { this.brakesId = value; } /** * Gets the value of the driveTypeId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDriveTypeId() { return driveTypeId; } /** * Sets the value of the driveTypeId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDriveTypeId(BigInteger value) { this.driveTypeId = value; } /** * Gets the value of the engineId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getEngineId() { return engineId; } /** * Sets the value of the engineId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setEngineId(BigInteger value) { this.engineId = value; } /** * Gets the value of the mfrBodyCodeId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMfrBodyCodeId() { return mfrBodyCodeId; } /** * Sets the value of the mfrBodyCodeId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMfrBodyCodeId(BigInteger value) { this.mfrBodyCodeId = value; } /** * Gets the value of the springTypesId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSpringTypesId() { return springTypesId; } /** * Sets the value of the springTypesId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSpringTypesId(BigInteger value) { this.springTypesId = value; } /** * Gets the value of the steeringId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSteeringId() { return steeringId; } /** * Sets the value of the steeringId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSteeringId(BigInteger value) { this.steeringId = value; } /** * Gets the value of the transmissionId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTransmissionId() { return transmissionId; } /** * Sets the value of the transmissionId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTransmissionId(BigInteger value) { this.transmissionId = value; } /** * Gets the value of the wheelbaseId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getWheelbaseId() { return wheelbaseId; } /** * Sets the value of the wheelbaseId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setWheelbaseId(BigInteger value) { this.wheelbaseId = value; } /** * Gets the value of the browseNodeId property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getBrowseNodeId() { return browseNodeId; } /** * Sets the value of the browseNodeId property. * * @param value * allowed object is * {@link BigInteger } * */ public void setBrowseNodeId(BigInteger value) { this.browseNodeId = value; } /** * Gets the value of the brand property. * * @return * possible object is * {@link String } * */ public String getBrand() { return brand; } /** * Sets the value of the brand property. * * @param value * allowed object is * {@link String } * */ public void setBrand(String value) { this.brand = value; } /** * Gets the value of the count property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCount() { return count; } /** * Sets the value of the count property. * * @param value * allowed object is * {@link BigInteger } * */ public void setCount(BigInteger value) { this.count = value; } /** * Gets the value of the fromItemId property. * * @return * possible object is * {@link String } * */ public String getFromItemId() { return fromItemId; } /** * Sets the value of the fromItemId property. * * @param value * allowed object is * {@link String } * */ public void setFromItemId(String value) { this.fromItemId = value; } /** * Gets the value of the partPageDirection property. * * @return * possible object is * {@link String } * */ public String getPartPageDirection() { return partPageDirection; } /** * Sets the value of the partPageDirection property. * * @param value * allowed object is * {@link String } * */ public void setPartPageDirection(String value) { this.partPageDirection = value; } /** * Gets the value of the responseGroup 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 responseGroup property. * * <p> * For example, to add a new item, do as follows: * <pre> * getResponseGroup().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getResponseGroup() { if (responseGroup == null) { responseGroup = new ArrayList<String>(); } return this.responseGroup; } }