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 javax.xml.bind.JAXBElement;
046: import javax.xml.bind.annotation.XmlElementDecl;
047: import javax.xml.bind.annotation.XmlRegistry;
048: import javax.xml.namespace.QName;
049:
050: /**
051: * This object contains factory methods for each
052: * Java content interface and Java element interface
053: * generated in the com.sun.xml.ws.mex.client.schema package.
054: * <p>An ObjectFactory allows you to programatically
055: * construct new instances of the Java representation
056: * for XML content. The Java representation of XML
057: * content can consist of schema derived interfaces
058: * and classes representing the binding of schema
059: * type definitions, element declarations and model
060: * groups. Factory methods for each of these are
061: * provided in this class.
062: *
063: */
064: @XmlRegistry
065: public class ObjectFactory {
066:
067: private final static QName _Location_QNAME = new QName(
068: "http://schemas.xmlsoap.org/ws/2004/09/mex", "Location");
069: private final static QName _Dialect_QNAME = new QName(
070: "http://schemas.xmlsoap.org/ws/2004/09/mex", "Dialect");
071: private final static QName _Identifier_QNAME = new QName(
072: "http://schemas.xmlsoap.org/ws/2004/09/mex", "Identifier");
073:
074: /**
075: * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sun.xml.ws.mex.client.schema
076: *
077: */
078: public ObjectFactory() {
079: }
080:
081: /**
082: * Create an instance of {@link Metadata }
083: *
084: */
085: public Metadata createMetadata() {
086: return new Metadata();
087: }
088:
089: /**
090: * Create an instance of {@link GetMetadata }
091: *
092: */
093: public GetMetadata createGetMetadata() {
094: return new GetMetadata();
095: }
096:
097: /**
098: * Create an instance of {@link MetadataReference }
099: *
100: */
101: public MetadataReference createMetadataReference() {
102: return new MetadataReference();
103: }
104:
105: /**
106: * Create an instance of {@link MetadataSection }
107: *
108: */
109: public MetadataSection createMetadataSection() {
110: return new MetadataSection();
111: }
112:
113: /**
114: * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
115: *
116: */
117: @XmlElementDecl(namespace="http://schemas.xmlsoap.org/ws/2004/09/mex",name="Location")
118: public JAXBElement<String> createLocation(String value) {
119: return new JAXBElement<String>(_Location_QNAME, String.class,
120: null, value);
121: }
122:
123: /**
124: * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
125: *
126: */
127: @XmlElementDecl(namespace="http://schemas.xmlsoap.org/ws/2004/09/mex",name="Dialect")
128: public JAXBElement<String> createDialect(String value) {
129: return new JAXBElement<String>(_Dialect_QNAME, String.class,
130: null, value);
131: }
132:
133: /**
134: * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
135: *
136: */
137: @XmlElementDecl(namespace="http://schemas.xmlsoap.org/ws/2004/09/mex",name="Identifier")
138: public JAXBElement<String> createIdentifier(String value) {
139: return new JAXBElement<String>(_Identifier_QNAME, String.class,
140: null, value);
141: }
142:
143: }
|