KickJava   Java API By Example, From Geeks To Geeks.

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


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.HashMap JavaDoc;
13 import java.util.List JavaDoc;
14 import java.util.Map JavaDoc;
15 import javax.xml.bind.annotation.XmlAccessType;
16 import javax.xml.bind.annotation.XmlAccessorType;
17 import javax.xml.bind.annotation.XmlAnyAttribute;
18 import javax.xml.bind.annotation.XmlAnyElement;
19 import javax.xml.bind.annotation.XmlAttribute;
20 import javax.xml.bind.annotation.XmlType;
21 import javax.xml.namespace.QName JavaDoc;
22 import com.sun.xml.ws.security.trust.impl.bindings.ClaimsType;
23 import org.w3c.dom.Element JavaDoc;
24
25
26 /**
27  * <p>Java class for ClaimsType complex type.
28  *
29  * <p>The following schema fragment specifies the expected content contained within this class.
30  *
31  * <pre>
32  * &lt;complexType name="ClaimsType">
33  * &lt;complexContent>
34  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35  * &lt;sequence>
36  * &lt;any/>
37  * &lt;/sequence>
38  * &lt;attribute name="Dialect" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
39  * &lt;/restriction>
40  * &lt;/complexContent>
41  * &lt;/complexType>
42  * </pre>
43  *
44  *
45  */

46 @XmlAccessorType(XmlAccessType.FIELD)
47 @XmlType(name = "ClaimsType", propOrder = {
48     "any"
49 })
50 public class ClaimsType {
51
52     @XmlAnyElement(lax = true)
53     protected List JavaDoc<Object JavaDoc> any;
54     @XmlAttribute(name = "Dialect")
55     protected String JavaDoc dialect;
56     @XmlAnyAttribute
57     private Map JavaDoc<QName JavaDoc, String JavaDoc> otherAttributes = new HashMap JavaDoc<QName JavaDoc, String JavaDoc>();
58
59     /**
60      * Gets the value of the any property.
61      *
62      * <p>
63      * This accessor method returns a reference to the live list,
64      * not a snapshot. Therefore any modification you make to the
65      * returned list will be present inside the JAXB object.
66      * This is why there is not a <CODE>set</CODE> method for the any property.
67      *
68      * <p>
69      * For example, to add a new item, do as follows:
70      * <pre>
71      * getAny().add(newItem);
72      * </pre>
73      *
74      *
75      * <p>
76      * Objects of the following type(s) are allowed in the list
77      * {@link Element }
78      * {@link Object }
79      *
80      *
81      */

82     public List JavaDoc<Object JavaDoc> getAny() {
83         if (any == null) {
84             any = new ArrayList JavaDoc<Object JavaDoc>();
85         }
86         return this.any;
87     }
88
89     /**
90      * Gets the value of the dialect property.
91      *
92      * @return
93      * possible object is
94      * {@link String }
95      *
96      */

97     public String JavaDoc getDialect() {
98         return dialect;
99     }
100
101     /**
102      * Sets the value of the dialect property.
103      *
104      * @param value
105      * allowed object is
106      * {@link String }
107      *
108      */

109     public void setDialect(String JavaDoc value) {
110         this.dialect = value;
111     }
112
113     /**
114      * Gets a map that contains attributes that aren't bound to any typed property on this class.
115      *
116      * <p>
117      * the map is keyed by the name of the attribute and
118      * the value is the string value of the attribute.
119      *
120      * the map returned by this method is live, and you can add new attribute
121      * by updating the map directly. Because of this design, there's no setter.
122      *
123      *
124      * @return
125      * always non-null
126      */

127     public Map JavaDoc<QName JavaDoc, String JavaDoc> getOtherAttributes() {
128         return otherAttributes;
129     }
130
131 }
132
Popular Tags