// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.06.10 at 02:58:42 PM EDT // package org.overlord.dtgov.taskapi.types; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for taskType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="taskType"> * <complexContent> * <extension base="{http://downloads.jboss.org/overlord/dtgov/schemas/task-api-v1.xsd}taskSummaryType"> * <sequence> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element ref="{http://downloads.jboss.org/overlord/dtgov/schemas/task-api-v1.xsd}taskData" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "taskType", propOrder = { "type", "description", "taskData" }) public class TaskType extends TaskSummaryType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected String type; protected String description; protected TaskDataType taskData; /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * 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 taskData property. * * @return * possible object is * {@link TaskDataType } * */ public TaskDataType getTaskData() { return taskData; } /** * Sets the value of the taskData property. * * @param value * allowed object is * {@link TaskDataType } * */ public void setTaskData(TaskDataType value) { this.taskData = value; } }