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 WSProcessFileUsingTransformerAsBackgroundJob complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSProcessFileUsingTransformerAsBackgroundJob"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="contentType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="wsOutputDecisionTable" type="{http://www.talend.com/mdm}WSOutputDecisionTable" minOccurs="0"/> * <element name="wsTransformerPK" type="{http://www.talend.com/mdm}WSTransformerPK" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSProcessFileUsingTransformerAsBackgroundJob", propOrder = { "contentType", "fileName", "wsOutputDecisionTable", "wsTransformerPK" }) public class WSProcessFileUsingTransformerAsBackgroundJob { protected String contentType; protected String fileName; protected WSOutputDecisionTable wsOutputDecisionTable; protected WSTransformerPK wsTransformerPK; /** * Default no-arg constructor * */ public WSProcessFileUsingTransformerAsBackgroundJob() { super(); } /** * Fully-initialising value constructor * */ public WSProcessFileUsingTransformerAsBackgroundJob(final String contentType, final String fileName, final WSOutputDecisionTable wsOutputDecisionTable, final WSTransformerPK wsTransformerPK) { this.contentType = contentType; this.fileName = fileName; this.wsOutputDecisionTable = wsOutputDecisionTable; this.wsTransformerPK = wsTransformerPK; } /** * Gets the value of the contentType property. * * @return * possible object is * {@link String } * */ public String getContentType() { return contentType; } /** * Sets the value of the contentType property. * * @param value * allowed object is * {@link String } * */ public void setContentType(String value) { this.contentType = value; } /** * Gets the value of the fileName property. * * @return * possible object is * {@link String } * */ public String getFileName() { return fileName; } /** * Sets the value of the fileName property. * * @param value * allowed object is * {@link String } * */ public void setFileName(String value) { this.fileName = value; } /** * Gets the value of the wsOutputDecisionTable property. * * @return * possible object is * {@link WSOutputDecisionTable } * */ public WSOutputDecisionTable getWsOutputDecisionTable() { return wsOutputDecisionTable; } /** * Sets the value of the wsOutputDecisionTable property. * * @param value * allowed object is * {@link WSOutputDecisionTable } * */ public void setWsOutputDecisionTable(WSOutputDecisionTable value) { this.wsOutputDecisionTable = value; } /** * Gets the value of the wsTransformerPK property. * * @return * possible object is * {@link WSTransformerPK } * */ public WSTransformerPK getWsTransformerPK() { return wsTransformerPK; } /** * Sets the value of the wsTransformerPK property. * * @param value * allowed object is * {@link WSTransformerPK } * */ public void setWsTransformerPK(WSTransformerPK value) { this.wsTransformerPK = value; } }