All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.wsdl.TDefinitions Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2009.02.05 at 01:54:07 PM EST 
//


package org.apache.cxf.wsdl;

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.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;


/**
 * 

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/}tExtensibleDocumented">
 *       <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(XmlAccessType.FIELD) @XmlType(name = "tDefinitions", propOrder = { "anyTopLevelOptionalElement" }) public class TDefinitions extends TExtensibleDocumented { @XmlElements({ @XmlElement(name = "portType", namespace = "http://schemas.xmlsoap.org/wsdl/", required = true, type = TPortType.class), @XmlElement(name = "types", namespace = "http://schemas.xmlsoap.org/wsdl/", required = true, type = TTypes.class), @XmlElement(name = "import", namespace = "http://schemas.xmlsoap.org/wsdl/", required = true, type = TImport.class), @XmlElement(name = "service", namespace = "http://schemas.xmlsoap.org/wsdl/", required = true, type = TService.class), @XmlElement(name = "message", namespace = "http://schemas.xmlsoap.org/wsdl/", required = true, type = TMessage.class), @XmlElement(name = "binding", namespace = "http://schemas.xmlsoap.org/wsdl/", required = true, type = TBinding.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 TPortType } * {@link TTypes } * {@link TImport } * {@link TService } * {@link TMessage } * {@link TBinding } * * */ 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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy