001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common Development
008: * and Distribution License("CDDL") (collectively, the "License"). You
009: * may not use this file except in compliance with the License. You can obtain
010: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
011: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
012: * language governing permissions and limitations under the License.
013: *
014: * When distributing the software, include this License Header Notice in each
015: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
016: * Sun designates this particular file as subject to the "Classpath" exception
017: * as provided by Sun in the GPL Version 2 section of the License file that
018: * accompanied this code. If applicable, add the following below the License
019: * Header, with the fields enclosed by brackets [] replaced by your own
020: * identifying information: "Portions Copyrighted [year]
021: * [name of copyright owner]"
022: *
023: * Contributor(s):
024: *
025: * If you wish your version of this file to be governed by only the CDDL or
026: * only the GPL Version 2, indicate your decision by adding "[Contributor]
027: * elects to include this software in this distribution under the [CDDL or GPL
028: * Version 2] license." If you don't indicate a single choice of license, a
029: * recipient has the option to distribute your version of this file under
030: * either the CDDL, the GPL Version 2 or to extend the choice of license to
031: * its licensees as provided above. However, if you add GPL Version 2 code
032: * and therefore, elected the GPL Version 2 license, then the option applies
033: * only if the new code is made subject to such option by the copyright
034: * holder.
035: */
036: //
037: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-3355
038: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
039: // Any modifications to this file will be lost upon recompilation of the source schema.
040: // Generated on: 2006.06.26 at 11:03:26 AM EDT
041: //
042:
043: package com.sun.xml.ws.mex.client.schema;
044:
045: import java.util.HashMap;
046: import java.util.Map;
047: import javax.xml.bind.annotation.XmlAccessType;
048: import javax.xml.bind.annotation.XmlAccessorType;
049: import javax.xml.bind.annotation.XmlAnyAttribute;
050: import javax.xml.bind.annotation.XmlElement;
051: import javax.xml.bind.annotation.XmlRootElement;
052: import javax.xml.bind.annotation.XmlType;
053: import javax.xml.namespace.QName;
054:
055: /**
056: * <p>Java class for GetMetadata element declaration.
057: *
058: * <p>The following schema fragment specifies the expected content contained within this class.
059: *
060: * <pre>
061: * <element name="GetMetadata">
062: * <complexType>
063: * <complexContent>
064: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
065: * <sequence>
066: * <element ref="{http://schemas.xmlsoap.org/ws/2004/09/mex}Dialect" minOccurs="0"/>
067: * <element ref="{http://schemas.xmlsoap.org/ws/2004/09/mex}Identifier" minOccurs="0"/>
068: * </sequence>
069: * </restriction>
070: * </complexContent>
071: * </complexType>
072: * </element>
073: * </pre>
074: *
075: *
076: */
077: @XmlAccessorType(XmlAccessType.FIELD)
078: @XmlType(name="",propOrder={"dialect","identifier"})
079: @XmlRootElement(name="GetMetadata")
080: public class GetMetadata {
081:
082: @XmlElement(name="Dialect",namespace="http://schemas.xmlsoap.org/ws/2004/09/mex")
083: protected String dialect;
084: @XmlElement(name="Identifier",namespace="http://schemas.xmlsoap.org/ws/2004/09/mex")
085: protected String identifier;
086: @XmlAnyAttribute
087: private Map<QName, String> otherAttributes = new HashMap<QName, String>();
088:
089: /**
090: * Gets the value of the dialect property.
091: *
092: * @return
093: * possible object is
094: * {@link String }
095: *
096: */
097: public String getDialect() {
098: return dialect;
099: }
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 value) {
110: this .dialect = value;
111: }
112:
113: /**
114: * Gets the value of the identifier property.
115: *
116: * @return
117: * possible object is
118: * {@link String }
119: *
120: */
121: public String getIdentifier() {
122: return identifier;
123: }
124:
125: /**
126: * Sets the value of the identifier property.
127: *
128: * @param value
129: * allowed object is
130: * {@link String }
131: *
132: */
133: public void setIdentifier(String value) {
134: this .identifier = value;
135: }
136:
137: /**
138: * Gets a map that contains attributes that aren't bound to any typed property on this class.
139: *
140: * <p>
141: * the map is keyed by the name of the attribute and
142: * the value is the string value of the attribute.
143: *
144: * the map returned by this method is live, and you can add new attribute
145: * by updating the map directly. Because of this design, there's no setter.
146: *
147: *
148: * @return
149: * always non-null
150: */
151: public Map<QName, String> getOtherAttributes() {
152: return otherAttributes;
153: }
154:
155: }
|