KickJava   Java API By Example, From Geeks To Geeks.

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


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 UnverifiedKeyBindingType complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="UnverifiedKeyBindingType">
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;/sequence>
22  * &lt;/extension>
23  * &lt;/complexContent>
24  * &lt;/complexType>
25  * </pre>
26  *
27  *
28  */

29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "UnverifiedKeyBindingType", propOrder = {
31     "validityInterval"
32 })
33 /*@XmlSeeAlso({
34     KeyBindingType.class
35 })*/

36 public class UnverifiedKeyBindingType
37     extends KeyBindingAbstractType
38 {
39
40     @XmlElement(name = "ValidityInterval")
41     protected ValidityIntervalType validityInterval;
42
43     /**
44      * Gets the value of the validityInterval property.
45      *
46      * @return
47      * possible object is
48      * {@link ValidityIntervalType }
49      *
50      */

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

63     public void setValidityInterval(ValidityIntervalType value) {
64         this.validityInterval = value;
65     }
66
67 }
68
Popular Tags