KickJava   Java API By Example, From Geeks To Geeks.

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


1
2 package org.w3._2002._03.xkms_;
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.XmlType;
8
9
10 /**
11  * <p>Java class for KeyBindingType complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="KeyBindingType">
17  * &lt;complexContent>
18  * &lt;extension base="{http://www.w3.org/2002/03/xkms#}UnverifiedKeyBindingType">
19  * &lt;sequence>
20  * &lt;element ref="{http://www.w3.org/2002/03/xkms#}Status"/>
21  * &lt;/sequence>
22  * &lt;/extension>
23  * &lt;/complexContent>
24  * &lt;/complexType>
25  * </pre>
26  *
27  *
28  */

29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "KeyBindingType", propOrder = {
31     "status"
32 })
33 public class KeyBindingType
34     extends UnverifiedKeyBindingType
35 {
36
37     @XmlElement(name = "Status", required = true)
38     protected StatusType status;
39
40     /**
41      * Gets the value of the status property.
42      *
43      * @return
44      * possible object is
45      * {@link StatusType }
46      *
47      */

48     public StatusType getStatus() {
49         return status;
50     }
51
52     /**
53      * Sets the value of the status property.
54      *
55      * @param value
56      * allowed object is
57      * {@link StatusType }
58      *
59      */

60     public void setStatus(StatusType value) {
61         this.status = value;
62     }
63
64 }
65
Popular Tags