Subversion Repositories XServices

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 brianR 1
 
2
3
 
4
import javax.xml.bind.annotation.XmlAccessType;
5
import javax.xml.bind.annotation.XmlAccessorType;
6
import javax.xml.bind.annotation.XmlElement;
7
import javax.xml.bind.annotation.XmlElementRef;
8
import javax.xml.bind.annotation.XmlType;
9
10
 
11
 
12
 * <p>Java class for ImportCurrentStatus complex type.
13
 *
14
 * <p>The following schema fragment specifies the expected content contained within this class.
15
 *
16
 * <pre>
17
 * &lt;complexType name="ImportCurrentStatus">
18
 *   &lt;complexContent>
19
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20
 *       &lt;sequence>
21
 *         &lt;element name="importStatus" type="{urn:aewebservices71}ImportCurrentOverallStatus"/>
22
 *         &lt;element name="percentageComplete" type="{http://www.w3.org/2001/XMLSchema}long"/>
23
 *         &lt;element name="currentStep" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24
 *       &lt;/sequence>
25
 *     &lt;/restriction>
26
 *   &lt;/complexContent>
27
 * &lt;/complexType>
28
 * </pre>
29
 *
30
 *
31
 */
32
@XmlAccessorType(XmlAccessType.FIELD)
33
@XmlType(name = "ImportCurrentStatus", propOrder = {
34
    "importStatus",
35
    "percentageComplete",
36
    "currentStep"
37
})
38
public class ImportCurrentStatus {
39
40
 
41
    protected ImportCurrentOverallStatus importStatus;
42
    protected long percentageComplete;
43
    @XmlElementRef(name = "currentStep", namespace = "urn:aewebservices71", type = JAXBElement.class)
44
    protected JAXBElement<String> currentStep;
45
46
 
47
     * Gets the value of the importStatus property.
48
     *
49
     * @return
50
     *     possible object is
51
     *     {@link ImportCurrentOverallStatus }
52
     *
53
     */
54
    public ImportCurrentOverallStatus getImportStatus() {
55
        return importStatus;
56
    }
57
58
 
59
     * Sets the value of the importStatus property.
60
     *
61
     * @param value
62
     *     allowed object is
63
     *     {@link ImportCurrentOverallStatus }
64
     *
65
     */
66
    public void setImportStatus(ImportCurrentOverallStatus value) {
67
        this.importStatus = value;
68
    }
69
70
 
71
     * Gets the value of the percentageComplete property.
72
     *
73
     */
74
    public long getPercentageComplete() {
75
        return percentageComplete;
76
    }
77
78
 
79
     * Sets the value of the percentageComplete property.
80
     *
81
     */
82
    public void setPercentageComplete(long value) {
83
        this.percentageComplete = value;
84
    }
85
86
 
87
     * Gets the value of the currentStep property.
88
     *
89
     * @return
90
     *     possible object is
91
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
92
     *
93
     */
94
    public JAXBElement<String> getCurrentStep() {
95
        return currentStep;
96
    }
97
98
 
99
     * Sets the value of the currentStep property.
100
     *
101
     * @param value
102
     *     allowed object is
103
     *     {@link JAXBElement }{@code <}{@link String }{@code >}
104
     *
105
     */
106
    public void setCurrentStep(JAXBElement<String> value) {
107
        this.currentStep = ((JAXBElement<String> ) value);
108
    }
109
110
 
111