org.plasma.xml.wsdl.v20.Description Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plasma-metamodel Show documentation
Show all versions of plasma-metamodel Show documentation
The Plasma Metamodel Module
/**
* PlasmaSDO™ License
*
* This is a community release of PlasmaSDO™, a dual-license
* Service Data Object (SDO) 2.1 implementation.
* This particular copy of the software is released under the
* version 2 of the GNU General Public License. PlasmaSDO™ was developed by
* TerraMeta Software, Inc.
*
* Copyright (c) 2013, TerraMeta Software, Inc. All rights reserved.
*
* General License information can be found below.
*
* This distribution may include materials developed by third
* parties. For license and attribution notices for these
* materials, please refer to the documentation that accompanies
* this distribution (see the "Licenses for Third-Party Components"
* appendix) or view the online documentation at
* .
*
*/
package org.plasma.xml.wsdl.v20;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;
/**
*
* Although correct, this type declaration does not capture
* all the constraints on the contents of the wsdl:description
* element as defined by the WSDL 2.0 specification.
*
* In particular, the ordering constraints wrt elements preceding
* and following the wsdl:types child element are not captured, as
* attempts to incorporate such restrictions in the schema
* ran afoul of the UPA (Unique Particle Attribution) rule
* in the XML Schema language.
*
* Please refer to the WSDL 2.0 specification for
* additional information on the contents of this type.
*
*
* Java class for DescriptionType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescriptionType">
* <complexContent>
* <extension base="{http://www.w3.org/ns/wsdl}ExtensibleDocumentedType">
* <choice maxOccurs="unbounded" minOccurs="0">
* <element ref="{http://www.w3.org/ns/wsdl}import"/>
* <element ref="{http://www.w3.org/ns/wsdl}include"/>
* <element ref="{http://www.w3.org/ns/wsdl}types"/>
* <element ref="{http://www.w3.org/ns/wsdl}interface"/>
* <element ref="{http://www.w3.org/ns/wsdl}binding"/>
* <element ref="{http://www.w3.org/ns/wsdl}service"/>
* <any/>
* </choice>
* <attribute name="targetNamespace" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescriptionType", propOrder = {
"importsAndIncludesAndTypes"
})
@XmlRootElement(name = "description")
public class Description
extends ExtensibleDocumentedType
{
@XmlElementRefs({
@XmlElementRef(name = "interface", namespace = "http://www.w3.org/ns/wsdl", type = Interface.class),
@XmlElementRef(name = "types", namespace = "http://www.w3.org/ns/wsdl", type = Types.class),
@XmlElementRef(name = "service", namespace = "http://www.w3.org/ns/wsdl", type = Service.class),
@XmlElementRef(name = "binding", namespace = "http://www.w3.org/ns/wsdl", type = Binding.class),
@XmlElementRef(name = "import", namespace = "http://www.w3.org/ns/wsdl", type = Import.class),
@XmlElementRef(name = "include", namespace = "http://www.w3.org/ns/wsdl", type = Include.class)
})
@XmlAnyElement
protected List