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

com.tibco.xmlns.bw.process._2003.ProcessDefinition Maven / Gradle / Ivy

Go to download

The targetNamespace of this schema is "http://xmlns.tibco.com/bw/process/2003"

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.06.03 at 10:20:18 AM CEST 
//


package com.tibco.xmlns.bw.process._2003;

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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element ref="{http://xmlns.tibco.com/bw/process/2003}description" minOccurs="0"/>
 *         <element name="startName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="startType" type="{http://xmlns.tibco.com/bw/process/2003}ElementSpec" minOccurs="0"/>
 *         <element name="startX" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="startY" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="returnBindings" type="{http://xmlns.tibco.com/bw/process/2003}BindingSpec" minOccurs="0"/>
 *         <element name="endName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="endType" type="{http://xmlns.tibco.com/bw/process/2003}ElementSpec" minOccurs="0"/>
 *         <element name="endX" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="endY" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="errorSchemas" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="processVariables" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <any processContents='skip' maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element ref="{http://xmlns.tibco.com/bw/process/2003}activity" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://xmlns.tibco.com/bw/process/2003}transition" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://xmlns.tibco.com/bw/process/2003}label" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name", "description", "startName", "startType", "startX", "startY", "returnBindings", "endName", "endType", "endX", "endY", "errorSchemas", "processVariables", "activity", "transition", "label" }) @XmlRootElement(name = "ProcessDefinition") public class ProcessDefinition { @XmlElement(required = true) protected String name; protected String description; protected String startName; protected ElementSpec startType; protected Integer startX; protected Integer startY; protected BindingSpec returnBindings; protected String endName; protected ElementSpec endType; protected Integer endX; protected Integer endY; protected ProcessDefinition.ErrorSchemas errorSchemas; protected ProcessDefinition.ProcessVariables processVariables; protected List activity; protected List transition; protected List

* Objects of the following type(s) are allowed in the list * {@link Element } * * */ public List getAny() { if (any == null) { any = new ArrayList(); } return this.any; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy