Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 29 → Rev 30

/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/ImportCurrentStatus.java
0,0 → 1,111
 
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;
 
 
/**
* <p>Java class for ImportCurrentStatus complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="ImportCurrentStatus">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="importStatus" type="{urn:aewebservices71}ImportCurrentOverallStatus"/>
* &lt;element name="percentageComplete" type="{http://www.w3.org/2001/XMLSchema}long"/>
* &lt;element name="currentStep" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@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<String> 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<String> 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<String> value) {
this.currentStep = ((JAXBElement<String> ) value);
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property