KickJava   Java API By Example, From Geeks To Geeks.

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


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 import org.w3._2000._09.xmldsig_.SignatureType;
9
10
11 /**
12  * <p>Java class for ProofOfPossessionType complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="ProofOfPossessionType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}Signature"/>
22  * &lt;/sequence>
23  * &lt;/restriction>
24  * &lt;/complexContent>
25  * &lt;/complexType>
26  * </pre>
27  *
28  *
29  */

30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "ProofOfPossessionType", propOrder = {
32     "signature"
33 })
34 public class ProofOfPossessionType {
35
36     @XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#", required = true)
37     protected SignatureType signature;
38
39     /**
40      * Gets the value of the signature property.
41      *
42      * @return
43      * possible object is
44      * {@link SignatureType }
45      *
46      */

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

59     public void setSignature(SignatureType value) {
60         this.signature = value;
61     }
62
63 }
64
Popular Tags