KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3 > _2002 > _03 > xkms_ > StatusResultType


1
2 package org.w3._2002._03.xkms_;
3
4 import java.math.BigInteger JavaDoc;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlAttribute;
8 import javax.xml.bind.annotation.XmlType;
9
10
11 /**
12  * <p>Java class for StatusResultType complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="StatusResultType">
18  * &lt;complexContent>
19  * &lt;extension base="{http://www.w3.org/2002/03/xkms#}ResultType">
20  * &lt;attribute name="Success" type="{http://www.w3.org/2001/XMLSchema}integer" />
21  * &lt;attribute name="Failure" type="{http://www.w3.org/2001/XMLSchema}integer" />
22  * &lt;attribute name="Pending" type="{http://www.w3.org/2001/XMLSchema}integer" />
23  * &lt;/extension>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "StatusResultType")
32 public class StatusResultType
33     extends ResultType
34 {
35
36     @XmlAttribute(name = "Success")
37     protected BigInteger JavaDoc success;
38     @XmlAttribute(name = "Failure")
39     protected BigInteger JavaDoc failure;
40     @XmlAttribute(name = "Pending")
41     protected BigInteger JavaDoc pending;
42
43     /**
44      * Gets the value of the success property.
45      *
46      * @return
47      * possible object is
48      * {@link BigInteger }
49      *
50      */

51     public BigInteger JavaDoc getSuccess() {
52         return success;
53     }
54
55     /**
56      * Sets the value of the success property.
57      *
58      * @param value
59      * allowed object is
60      * {@link BigInteger }
61      *
62      */

63     public void setSuccess(BigInteger JavaDoc value) {
64         this.success = value;
65     }
66
67     /**
68      * Gets the value of the failure property.
69      *
70      * @return
71      * possible object is
72      * {@link BigInteger }
73      *
74      */

75     public BigInteger JavaDoc getFailure() {
76         return failure;
77     }
78
79     /**
80      * Sets the value of the failure property.
81      *
82      * @param value
83      * allowed object is
84      * {@link BigInteger }
85      *
86      */

87     public void setFailure(BigInteger JavaDoc value) {
88         this.failure = value;
89     }
90
91     /**
92      * Gets the value of the pending property.
93      *
94      * @return
95      * possible object is
96      * {@link BigInteger }
97      *
98      */

99     public BigInteger JavaDoc getPending() {
100         return pending;
101     }
102
103     /**
104      * Sets the value of the pending property.
105      *
106      * @param value
107      * allowed object is
108      * {@link BigInteger }
109      *
110      */

111     public void setPending(BigInteger JavaDoc value) {
112         this.pending = value;
113     }
114
115 }
116
Popular Tags