// // 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.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** * <p>Java class for tThrow complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tThrow"> * <complexContent> * <extension base="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tActivity"> * <attribute name="faultName" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" /> * <attribute name="faultVariable" type="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}BPELVariableName" /> * <anyAttribute processContents='lax' namespace='##other'/> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tThrow") public class TThrow extends TActivity { @XmlAttribute(name = "faultName", required = true) protected QName faultName; @XmlAttribute(name = "faultVariable") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String faultVariable; /** * Gets the value of the faultName property. * * @return * possible object is * {@link QName } * */ public QName getFaultName() { return faultName; } /** * Sets the value of the faultName property. * * @param value * allowed object is * {@link QName } * */ public void setFaultName(QName value) { this.faultName = value; } /** * Gets the value of the faultVariable property. * * @return * possible object is * {@link String } * */ public String getFaultVariable() { return faultVariable; } /** * Sets the value of the faultVariable property. * * @param value * allowed object is * {@link String } * */ public void setFaultVariable(String value) { this.faultVariable = value; } }