KickJava   Java API By Example, From Geeks To Geeks.

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


1
2 package org.w3._2002._03.xkms_;
3
4 import java.util.ArrayList JavaDoc;
5 import java.util.List JavaDoc;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlRootElement;
10 import javax.xml.bind.annotation.XmlType;
11
12
13 /**
14  * <p>Java class for RevokeResultType complex type.
15  *
16  * <p>The following schema fragment specifies the expected content contained within this class.
17  *
18  * <pre>
19  * &lt;complexType name="RevokeResultType">
20  * &lt;complexContent>
21  * &lt;extension base="{http://www.w3.org/2002/03/xkms#}ResultType">
22  * &lt;sequence>
23  * &lt;element ref="{http://www.w3.org/2002/03/xkms#}KeyBinding" maxOccurs="unbounded" minOccurs="0"/>
24  * &lt;/sequence>
25  * &lt;/extension>
26  * &lt;/complexContent>
27  * &lt;/complexType>
28  * </pre>
29  *
30  *
31  */

32 @XmlRootElement
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "RevokeResultType", propOrder = {
35     "keyBinding"
36 })
37 public class RevokeResultType
38     extends ResultType
39 {
40
41     @XmlElement(name = "KeyBinding")
42     protected List JavaDoc<KeyBindingType> keyBinding;
43
44     /**
45      * Gets the value of the keyBinding property.
46      *
47      * <p>
48      * This accessor method returns a reference to the live list,
49      * not a snapshot. Therefore any modification you make to the
50      * returned list will be present inside the JAXB object.
51      * This is why there is not a <CODE>set</CODE> method for the keyBinding property.
52      *
53      * <p>
54      * For example, to add a new item, do as follows:
55      * <pre>
56      * getKeyBinding().add(newItem);
57      * </pre>
58      *
59      *
60      * <p>
61      * Objects of the following type(s) are allowed in the list
62      * {@link KeyBindingType }
63      *
64      *
65      */

66     public List JavaDoc<KeyBindingType> getKeyBinding() {
67         if (keyBinding == null) {
68             keyBinding = new ArrayList JavaDoc<KeyBindingType>();
69         }
70         return this.keyBinding;
71     }
72
73 }
74
Popular Tags