01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2006.02.24 at 05:55:09 PM PST
06: //
07:
08: package com.sun.xml.ws.policy.impl.bindings;
09:
10: import java.util.HashMap;
11: import java.util.Map;
12: import javax.xml.bind.annotation.XmlAccessType;
13: import javax.xml.bind.annotation.XmlAccessorType;
14: import javax.xml.bind.annotation.XmlAnyAttribute;
15: import javax.xml.bind.annotation.XmlRootElement;
16: import javax.xml.bind.annotation.XmlType;
17: import javax.xml.namespace.QName;
18: import com.sun.xml.ws.policy.impl.bindings.UsingPolicy;
19:
20: /**
21: * <p>Java class for UsingPolicy element declaration.
22: *
23: * <p>The following schema fragment specifies the expected content contained within this class.
24: *
25: * <pre>
26: * <element name="UsingPolicy">
27: * <complexType>
28: * <complexContent>
29: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30: * </restriction>
31: * </complexContent>
32: * </complexType>
33: * </element>
34: * </pre>
35: *
36: *
37: */
38: @XmlAccessorType(XmlAccessType.FIELD)
39: @XmlType(name="")
40: @XmlRootElement(name="UsingPolicy")
41: public class UsingPolicy {
42:
43: @XmlAnyAttribute
44: private Map<QName, String> otherAttributes = new HashMap<QName, String>();
45:
46: /**
47: * Gets a map that contains attributes that aren't bound to any typed property on this class.
48: *
49: * <p>
50: * the map is keyed by the name of the attribute and
51: * the value is the string value of the attribute.
52: *
53: * the map returned by this method is live, and you can add new attribute
54: * by updating the map directly. Because of this design, there's no setter.
55: *
56: *
57: * @return
58: * always non-null
59: */
60: public Map<QName, String> getOtherAttributes() {
61: return otherAttributes;
62: }
63:
64: }
|