package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSProcessBytesUsingTransformerWsOutputDecisionTableDecisions complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSProcessBytesUsingTransformerWsOutputDecisionTableDecisions"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="decision" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="outputVariableName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSProcessBytesUsingTransformerWsOutputDecisionTableDecisions", propOrder = { "decision", "outputVariableName" }) public class WSProcessBytesUsingTransformerWsOutputDecisionTableDecisions { protected String decision; protected String outputVariableName; /** * Default no-arg constructor * */ public WSProcessBytesUsingTransformerWsOutputDecisionTableDecisions() { super(); } /** * Fully-initialising value constructor * */ public WSProcessBytesUsingTransformerWsOutputDecisionTableDecisions(final String decision, final String outputVariableName) { this.decision = decision; this.outputVariableName = outputVariableName; } /** * Gets the value of the decision property. * * @return * possible object is * {@link String } * */ public String getDecision() { return decision; } /** * Sets the value of the decision property. * * @param value * allowed object is * {@link String } * */ public void setDecision(String value) { this.decision = value; } /** * Gets the value of the outputVariableName property. * * @return * possible object is * {@link String } * */ public String getOutputVariableName() { return outputVariableName; } /** * Sets the value of the outputVariableName property. * * @param value * allowed object is * {@link String } * */ public void setOutputVariableName(String value) { this.outputVariableName = value; } }