KickJava   Java API By Example, From Geeks To Geeks.

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


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.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9
10
11 /**
12  * <p>Java class for ReissueRequestType complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="ReissueRequestType">
18  * &lt;complexContent>
19  * &lt;extension base="{http://www.w3.org/2002/03/xkms#}RequestAbstractType">
20  * &lt;sequence>
21  * &lt;element ref="{http://www.w3.org/2002/03/xkms#}ReissueKeyBinding"/>
22  * &lt;element ref="{http://www.w3.org/2002/03/xkms#}Authentication"/>
23  * &lt;element ref="{http://www.w3.org/2002/03/xkms#}ProofOfPossession" 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 = "ReissueRequestType", propOrder = {
35     "reissueKeyBinding",
36     "authentication",
37     "proofOfPossession"
38 })
39 public class ReissueRequestType
40     extends RequestAbstractType
41 {
42
43     @XmlElement(name = "ReissueKeyBinding", required = true)
44     protected KeyBindingType reissueKeyBinding;
45     @XmlElement(name = "Authentication", required = true)
46     protected AuthenticationType authentication;
47     @XmlElement(name = "ProofOfPossession")
48     protected ProofOfPossessionType proofOfPossession;
49
50     /**
51      * Gets the value of the reissueKeyBinding property.
52      *
53      * @return
54      * possible object is
55      * {@link KeyBindingType }
56      *
57      */

58     public KeyBindingType getReissueKeyBinding() {
59         return reissueKeyBinding;
60     }
61
62     /**
63      * Sets the value of the reissueKeyBinding property.
64      *
65      * @param value
66      * allowed object is
67      * {@link KeyBindingType }
68      *
69      */

70     public void setReissueKeyBinding(KeyBindingType value) {
71         this.reissueKeyBinding = value;
72     }
73
74     /**
75      * Gets the value of the authentication property.
76      *
77      * @return
78      * possible object is
79      * {@link AuthenticationType }
80      *
81      */

82     public AuthenticationType getAuthentication() {
83         return authentication;
84     }
85
86     /**
87      * Sets the value of the authentication property.
88      *
89      * @param value
90      * allowed object is
91      * {@link AuthenticationType }
92      *
93      */

94     public void setAuthentication(AuthenticationType value) {
95         this.authentication = value;
96     }
97
98     /**
99      * Gets the value of the proofOfPossession property.
100      *
101      * @return
102      * possible object is
103      * {@link ProofOfPossessionType }
104      *
105      */

106     public ProofOfPossessionType getProofOfPossession() {
107         return proofOfPossession;
108     }
109
110     /**
111      * Sets the value of the proofOfPossession property.
112      *
113      * @param value
114      * allowed object is
115      * {@link ProofOfPossessionType }
116      *
117      */

118     public void setProofOfPossession(ProofOfPossessionType value) {
119         this.proofOfPossession = value;
120     }
121
122 }
123
Popular Tags