package com.ECS.client.jax; import java.math.BigInteger; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="TransmissionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="TransmissionId" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "transmissionName", "transmissionId" }) @XmlRootElement(name = "VehicleTransmission") public class VehicleTransmission { @XmlElement(name = "TransmissionName") protected String transmissionName; @XmlElement(name = "TransmissionId", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger transmissionId; /** * Gets the value of the transmissionName property. * * @return * possible object is * {@link String } * */ public String getTransmissionName() { return transmissionName; } /** * Sets the value of the transmissionName property. * * @param value * allowed object is * {@link String } * */ public void setTransmissionName(String value) { this.transmissionName = 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; } }