KickJava   Java API By Example, From Geeks To Geeks.

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


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.XmlAttribute;
7 import javax.xml.bind.annotation.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9
10
11 /**
12  * <p>Java class for NotBoundAuthenticationType complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="NotBoundAuthenticationType">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;attribute name="Protocol" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
21  * &lt;attribute name="Value" use="required" type="{http://www.w3.org/2001/XMLSchema}base64Binary" />
22  * &lt;/restriction>
23  * &lt;/complexContent>
24  * &lt;/complexType>
25  * </pre>
26  *
27  *
28  */

29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "NotBoundAuthenticationType")
31 public class NotBoundAuthenticationType {
32
33     @XmlAttribute(name = "Protocol", required = true)
34     @XmlSchemaType(name = "anyURI")
35     protected String JavaDoc protocol;
36     @XmlAttribute(name = "Value", required = true)
37     protected byte[] value;
38
39     /**
40      * Gets the value of the protocol property.
41      *
42      * @return
43      * possible object is
44      * {@link String }
45      *
46      */

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

59     public void setProtocol(String JavaDoc value) {
60         this.protocol = value;
61     }
62
63     /**
64      * Gets the value of the value property.
65      *
66      * @return
67      * possible object is
68      * byte[]
69      */

70     public byte[] getValue() {
71         return value;
72     }
73
74     /**
75      * Sets the value of the value property.
76      *
77      * @param value
78      * allowed object is
79      * byte[]
80      */

81     public void setValue(byte[] value) {
82         this.value = ((byte[]) value);
83     }
84
85 }
86
Popular Tags