KickJava   Java API By Example, From Geeks To Geeks.

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


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

30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "AuthenticationType", propOrder = {
32     "keyBindingAuthentication",
33     "notBoundAuthentication"
34 })
35 public class AuthenticationType {
36
37     @XmlElement(name = "KeyBindingAuthentication")
38     protected KeyBindingAuthenticationType keyBindingAuthentication;
39     @XmlElement(name = "NotBoundAuthentication")
40     protected NotBoundAuthenticationType notBoundAuthentication;
41
42     /**
43      * Gets the value of the keyBindingAuthentication property.
44      *
45      * @return
46      * possible object is
47      * {@link KeyBindingAuthenticationType }
48      *
49      */

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

62     public void setKeyBindingAuthentication(KeyBindingAuthenticationType value) {
63         this.keyBindingAuthentication = value;
64     }
65
66     /**
67      * Gets the value of the notBoundAuthentication property.
68      *
69      * @return
70      * possible object is
71      * {@link NotBoundAuthenticationType }
72      *
73      */

74     public NotBoundAuthenticationType getNotBoundAuthentication() {
75         return notBoundAuthentication;
76     }
77
78     /**
79      * Sets the value of the notBoundAuthentication property.
80      *
81      * @param value
82      * allowed object is
83      * {@link NotBoundAuthenticationType }
84      *
85      */

86     public void setNotBoundAuthentication(NotBoundAuthenticationType value) {
87         this.notBoundAuthentication = value;
88     }
89
90 }
91
Popular Tags