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 WSTransformerContextPipelinePipelineItem complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSTransformerContextPipelinePipelineItem"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="variable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="wsTypedContent" type="{http://www.talend.com/mdm}WSTypedContent" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSTransformerContextPipelinePipelineItem", propOrder = { "variable", "wsTypedContent" }) public class WSTransformerContextPipelinePipelineItem { protected String variable; protected WSTypedContent wsTypedContent; /** * Default no-arg constructor * */ public WSTransformerContextPipelinePipelineItem() { super(); } /** * Fully-initialising value constructor * */ public WSTransformerContextPipelinePipelineItem(final String variable, final WSTypedContent wsTypedContent) { this.variable = variable; this.wsTypedContent = wsTypedContent; } /** * 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 wsTypedContent property. * * @return * possible object is * {@link WSTypedContent } * */ public WSTypedContent getWsTypedContent() { return wsTypedContent; } /** * Sets the value of the wsTypedContent property. * * @param value * allowed object is * {@link WSTypedContent } * */ public void setWsTypedContent(WSTypedContent value) { this.wsTypedContent = value; } }