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