KickJava   Java API By Example, From Geeks To Geeks.

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


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 PrototypeKeyBindingType complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="PrototypeKeyBindingType">
17  * &lt;complexContent>
18  * &lt;extension base="{http://www.w3.org/2002/03/xkms#}KeyBindingAbstractType">
19  * &lt;sequence>
20  * &lt;element ref="{http://www.w3.org/2002/03/xkms#}ValidityInterval" minOccurs="0"/>
21  * &lt;element ref="{http://www.w3.org/2002/03/xkms#}RevocationCodeIdentifier" minOccurs="0"/>
22  * &lt;/sequence>
23  * &lt;/extension>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "PrototypeKeyBindingType", propOrder = {
32     "validityInterval",
33     "revocationCodeIdentifier"
34 })
35 public class PrototypeKeyBindingType
36     extends KeyBindingAbstractType
37 {
38
39     @XmlElement(name = "ValidityInterval")
40     protected ValidityIntervalType validityInterval;
41     @XmlElement(name = "RevocationCodeIdentifier")
42     protected byte[] revocationCodeIdentifier;
43
44     /**
45      * Gets the value of the validityInterval property.
46      *
47      * @return
48      * possible object is
49      * {@link ValidityIntervalType }
50      *
51      */

52     public ValidityIntervalType getValidityInterval() {
53         return validityInterval;
54     }
55
56     /**
57      * Sets the value of the validityInterval property.
58      *
59      * @param value
60      * allowed object is
61      * {@link ValidityIntervalType }
62      *
63      */

64     public void setValidityInterval(ValidityIntervalType value) {
65         this.validityInterval = value;
66     }
67
68     /**
69      * Gets the value of the revocationCodeIdentifier property.
70      *
71      * @return
72      * possible object is
73      * byte[]
74      */

75     public byte[] getRevocationCodeIdentifier() {
76         return revocationCodeIdentifier;
77     }
78
79     /**
80      * Sets the value of the revocationCodeIdentifier property.
81      *
82      * @param value
83      * allowed object is
84      * byte[]
85      */

86     public void setRevocationCodeIdentifier(byte[] value) {
87         this.revocationCodeIdentifier = ((byte[]) value);
88     }
89
90 }
91
Popular Tags