// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-146 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.12.10 at 11:11:33 PM GMT // package org.savara.bpel.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** * * XSD Authors: The child element correlations needs to be a Local Element Declaration, * because there is another correlations element defined for the invoke activity. * * * <p>Java class for tReceive complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tReceive"> * <complexContent> * <extension base="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tActivity"> * <sequence> * <element name="correlations" type="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tCorrelations" minOccurs="0"/> * <element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}fromParts" minOccurs="0"/> * </sequence> * <attribute name="partnerLink" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> * <attribute name="portType" type="{http://www.w3.org/2001/XMLSchema}QName" /> * <attribute name="operation" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> * <attribute name="variable" type="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}BPELVariableName" /> * <attribute name="createInstance" type="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tBoolean" default="no" /> * <attribute name="messageExchange" type="{http://www.w3.org/2001/XMLSchema}NCName" /> * <anyAttribute processContents='lax' namespace='##other'/> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tReceive", propOrder = { "correlations", "fromParts" }) public class TReceive extends TActivity { protected TCorrelations correlations; protected TFromParts fromParts; @XmlAttribute(name = "partnerLink", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String partnerLink; @XmlAttribute(name = "portType") protected QName portType; @XmlAttribute(name = "operation", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String operation; @XmlAttribute(name = "variable") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String variable; @XmlAttribute(name = "createInstance") protected TBoolean createInstance; @XmlAttribute(name = "messageExchange") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String messageExchange; /** * Gets the value of the correlations property. * * @return * possible object is * {@link TCorrelations } * */ public TCorrelations getCorrelations() { return correlations; } /** * Sets the value of the correlations property. * * @param value * allowed object is * {@link TCorrelations } * */ public void setCorrelations(TCorrelations value) { this.correlations = value; } /** * Gets the value of the fromParts property. * * @return * possible object is * {@link TFromParts } * */ public TFromParts getFromParts() { return fromParts; } /** * Sets the value of the fromParts property. * * @param value * allowed object is * {@link TFromParts } * */ public void setFromParts(TFromParts value) { this.fromParts = value; } /** * Gets the value of the partnerLink property. * * @return * possible object is * {@link String } * */ public String getPartnerLink() { return partnerLink; } /** * Sets the value of the partnerLink property. * * @param value * allowed object is * {@link String } * */ public void setPartnerLink(String value) { this.partnerLink = value; } /** * Gets the value of the portType property. * * @return * possible object is * {@link QName } * */ public QName getPortType() { return portType; } /** * Sets the value of the portType property. * * @param value * allowed object is * {@link QName } * */ public void setPortType(QName value) { this.portType = value; } /** * Gets the value of the operation property. * * @return * possible object is * {@link String } * */ public String getOperation() { return operation; } /** * Sets the value of the operation property. * * @param value * allowed object is * {@link String } * */ public void setOperation(String value) { this.operation = value; } /** * Gets the value of the variable property. * * @return * possible object is * {@link String } * */ public String getVariable() { return variable; } /** * Sets the value of the variable property. * * @param value * allowed object is * {@link String } * */ public void setVariable(String value) { this.variable = value; } /** * Gets the value of the createInstance property. * * @return * possible object is * {@link TBoolean } * */ public TBoolean getCreateInstance() { if (createInstance == null) { return TBoolean.NO; } else { return createInstance; } } /** * Sets the value of the createInstance property. * * @param value * allowed object is * {@link TBoolean } * */ public void setCreateInstance(TBoolean value) { this.createInstance = value; } /** * Gets the value of the messageExchange property. * * @return * possible object is * {@link String } * */ public String getMessageExchange() { return messageExchange; } /** * Sets the value of the messageExchange property. * * @param value * allowed object is * {@link String } * */ public void setMessageExchange(String value) { this.messageExchange = value; } }