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 WSTransformerPluginSpec complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSTransformerPluginSpec"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="input" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="output" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="parameters" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="pluginJNDI" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSTransformerPluginSpec", propOrder = { "description", "input", "output", "parameters", "pluginJNDI" }) public class WSTransformerPluginSpec { protected String description; protected String input; protected String output; protected String parameters; protected String pluginJNDI; /** * Default no-arg constructor * */ public WSTransformerPluginSpec() { super(); } /** * Fully-initialising value constructor * */ public WSTransformerPluginSpec(final String description, final String input, final String output, final String parameters, final String pluginJNDI) { this.description = description; this.input = input; this.output = output; this.parameters = parameters; this.pluginJNDI = pluginJNDI; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the input property. * * @return * possible object is * {@link String } * */ public String getInput() { return input; } /** * Sets the value of the input property. * * @param value * allowed object is * {@link String } * */ public void setInput(String value) { this.input = value; } /** * Gets the value of the output property. * * @return * possible object is * {@link String } * */ public String getOutput() { return output; } /** * Sets the value of the output property. * * @param value * allowed object is * {@link String } * */ public void setOutput(String value) { this.output = value; } /** * Gets the value of the parameters property. * * @return * possible object is * {@link String } * */ public String getParameters() { return parameters; } /** * Sets the value of the parameters property. * * @param value * allowed object is * {@link String } * */ public void setParameters(String value) { this.parameters = value; } /** * Gets the value of the pluginJNDI property. * * @return * possible object is * {@link String } * */ public String getPluginJNDI() { return pluginJNDI; } /** * Sets the value of the pluginJNDI property. * * @param value * allowed object is * {@link String } * */ public void setPluginJNDI(String value) { this.pluginJNDI = value; } }