
org.objectweb.celtix.wsdl.TDefinitions Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-hudson-3037-ea3
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2006.05.08 at 07:49:35 AM EDT
//
package org.objectweb.celtix.wsdl;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.AccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.objectweb.celtix.wsdl.TBinding;
import org.objectweb.celtix.wsdl.TDefinitions;
import org.objectweb.celtix.wsdl.TDocumented;
import org.objectweb.celtix.wsdl.TImport;
import org.objectweb.celtix.wsdl.TMessage;
import org.objectweb.celtix.wsdl.TPortType;
import org.objectweb.celtix.wsdl.TService;
import org.objectweb.celtix.wsdl.TTypes;
/**
* Java class for tDefinitions complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tDefinitions">
* <complexContent>
* <extension base="{http://schemas.xmlsoap.org/wsdl/}tDocumented">
* <sequence>
* <group ref="{http://schemas.xmlsoap.org/wsdl/}anyTopLevelOptionalElement" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}NCName" />
* <attribute name="targetNamespace" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(AccessType.FIELD)
@XmlType(name = "tDefinitions", propOrder = {
"anyTopLevelOptionalElement"
})
public class TDefinitions
extends TDocumented
{
@XmlElements({
@XmlElement(name = "message", namespace = "http://schemas.xmlsoap.org/wsdl/", type = TMessage.class),
@XmlElement(name = "types", namespace = "http://schemas.xmlsoap.org/wsdl/", type = TTypes.class),
@XmlElement(name = "binding", namespace = "http://schemas.xmlsoap.org/wsdl/", type = TBinding.class),
@XmlElement(name = "portType", namespace = "http://schemas.xmlsoap.org/wsdl/", type = TPortType.class),
@XmlElement(name = "import", namespace = "http://schemas.xmlsoap.org/wsdl/", type = TImport.class),
@XmlElement(name = "service", namespace = "http://schemas.xmlsoap.org/wsdl/", type = TService.class)
})
protected List anyTopLevelOptionalElement;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String name;
@XmlAttribute
protected String targetNamespace;
/**
* Gets the value of the anyTopLevelOptionalElement property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the anyTopLevelOptionalElement property.
*
*
* For example, to add a new item, do as follows:
*
* getAnyTopLevelOptionalElement().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TMessage }
* {@link TTypes }
* {@link TBinding }
* {@link TPortType }
* {@link TImport }
* {@link TService }
*
*
*/
public List getAnyTopLevelOptionalElement() {
if (anyTopLevelOptionalElement == null) {
anyTopLevelOptionalElement = new ArrayList();
}
return this.anyTopLevelOptionalElement;
}
public boolean isSetAnyTopLevelOptionalElement() {
return ((this.anyTopLevelOptionalElement!= null)&&(!this.anyTopLevelOptionalElement.isEmpty()));
}
public void unsetAnyTopLevelOptionalElement() {
this.anyTopLevelOptionalElement = null;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
public boolean isSetName() {
return (this.name!= null);
}
/**
* Gets the value of the targetNamespace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTargetNamespace() {
return targetNamespace;
}
/**
* Sets the value of the targetNamespace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTargetNamespace(String value) {
this.targetNamespace = value;
}
public boolean isSetTargetNamespace() {
return (this.targetNamespace!= null);
}
}