package net.brutex.sbm.wsclient; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** *

Java class for ImportCurrentStatus complex type. * *

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

 * <complexType name="ImportCurrentStatus">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="importStatus" type="{urn:aewebservices71}ImportCurrentOverallStatus"/>
 *         <element name="percentageComplete" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="currentStep" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImportCurrentStatus", propOrder = { "importStatus", "percentageComplete", "currentStep" }) public class ImportCurrentStatus { @XmlElement(required = true) protected ImportCurrentOverallStatus importStatus; protected long percentageComplete; @XmlElementRef(name = "currentStep", namespace = "urn:aewebservices71", type = JAXBElement.class) protected JAXBElement currentStep; /** * Gets the value of the importStatus property. * * @return * possible object is * {@link ImportCurrentOverallStatus } * */ public ImportCurrentOverallStatus getImportStatus() { return importStatus; } /** * Sets the value of the importStatus property. * * @param value * allowed object is * {@link ImportCurrentOverallStatus } * */ public void setImportStatus(ImportCurrentOverallStatus value) { this.importStatus = value; } /** * Gets the value of the percentageComplete property. * */ public long getPercentageComplete() { return percentageComplete; } /** * Sets the value of the percentageComplete property. * */ public void setPercentageComplete(long value) { this.percentageComplete = value; } /** * Gets the value of the currentStep property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getCurrentStep() { return currentStep; } /** * Sets the value of the currentStep property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setCurrentStep(JAXBElement value) { this.currentStep = ((JAXBElement ) value); } }