KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > xml > ws > policy > impl > bindings > UsingPolicy


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.policy.impl.bindings;
10
11 import java.util.HashMap JavaDoc;
12 import java.util.Map JavaDoc;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlAnyAttribute;
16 import javax.xml.bind.annotation.XmlRootElement;
17 import javax.xml.bind.annotation.XmlType;
18 import javax.xml.namespace.QName JavaDoc;
19 import com.sun.xml.ws.policy.impl.bindings.UsingPolicy;
20
21
22 /**
23  * <p>Java class for UsingPolicy element declaration.
24  *
25  * <p>The following schema fragment specifies the expected content contained within this class.
26  *
27  * <pre>
28  * &lt;element name="UsingPolicy">
29  * &lt;complexType>
30  * &lt;complexContent>
31  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32  * &lt;/restriction>
33  * &lt;/complexContent>
34  * &lt;/complexType>
35  * &lt;/element>
36  * </pre>
37  *
38  *
39  */

40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "")
42 @XmlRootElement(name = "UsingPolicy")
43 public class UsingPolicy {
44
45     @XmlAnyAttribute
46     private Map JavaDoc<QName JavaDoc, String JavaDoc> otherAttributes = new HashMap JavaDoc<QName JavaDoc, String JavaDoc>();
47
48     /**
49      * Gets a map that contains attributes that aren't bound to any typed property on this class.
50      *
51      * <p>
52      * the map is keyed by the name of the attribute and
53      * the value is the string value of the attribute.
54      *
55      * the map returned by this method is live, and you can add new attribute
56      * by updating the map directly. Because of this design, there's no setter.
57      *
58      *
59      * @return
60      * always non-null
61      */

62     public Map JavaDoc<QName JavaDoc, String JavaDoc> getOtherAttributes() {
63         return otherAttributes;
64     }
65
66 }
67
Popular Tags