KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > ws > security > trust > impl > bindings > AuthenticatorType


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.02.24 at 05:55:09 PM PST
6
//
7

8
9 package com.sun.xml.ws.security.trust.impl.bindings;
10
11 import java.util.ArrayList JavaDoc;
12 import java.util.List JavaDoc;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlAnyElement;
16 import javax.xml.bind.annotation.XmlElement;
17 import javax.xml.bind.annotation.XmlType;
18 import com.sun.xml.ws.security.trust.impl.bindings.AuthenticatorType;
19 import org.w3c.dom.Element JavaDoc;
20
21
22 /**
23  * <p>Java class for AuthenticatorType complex type.
24  *
25  * <p>The following schema fragment specifies the expected content contained within this class.
26  *
27  * <pre>
28  * &lt;complexType name="AuthenticatorType">
29  * &lt;complexContent>
30  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31  * &lt;sequence>
32  * &lt;element ref="{http://schemas.xmlsoap.org/ws/2005/02/trust}CombinedHash" minOccurs="0"/>
33  * &lt;any/>
34  * &lt;/sequence>
35  * &lt;/restriction>
36  * &lt;/complexContent>
37  * &lt;/complexType>
38  * </pre>
39  *
40  *
41  */

42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "AuthenticatorType", propOrder = {
44     "combinedHash",
45     "any"
46 })
47 public class AuthenticatorType {
48
49     @XmlElement(name = "CombinedHash", namespace = "http://schemas.xmlsoap.org/ws/2005/02/trust")
50     protected byte[] combinedHash;
51     @XmlAnyElement(lax = true)
52     protected List JavaDoc<Object JavaDoc> any;
53
54     /**
55      * Gets the value of the combinedHash property.
56      *
57      * @return
58      * possible object is
59      * byte[]
60      */

61     public byte[] getCombinedHash() {
62         return combinedHash;
63     }
64
65     /**
66      * Sets the value of the combinedHash property.
67      *
68      * @param value
69      * allowed object is
70      * byte[]
71      */

72     public void setCombinedHash(byte[] value) {
73         this.combinedHash = ((byte[]) value);
74     }
75
76     /**
77      * Gets the value of the any property.
78      *
79      * <p>
80      * This accessor method returns a reference to the live list,
81      * not a snapshot. Therefore any modification you make to the
82      * returned list will be present inside the JAXB object.
83      * This is why there is not a <CODE>set</CODE> method for the any property.
84      *
85      * <p>
86      * For example, to add a new item, do as follows:
87      * <pre>
88      * getAny().add(newItem);
89      * </pre>
90      *
91      *
92      * <p>
93      * Objects of the following type(s) are allowed in the list
94      * {@link Element }
95      * {@link Object }
96      *
97      *
98      */

99     public List JavaDoc<Object JavaDoc> getAny() {
100         if (any == null) {
101             any = new ArrayList JavaDoc<Object JavaDoc>();
102         }
103         return this.any;
104     }
105
106 }
107
Popular Tags