package org.ourgrid.broker.controlws.gatewayws.client; import java.util.ArrayList; import java.util.List; 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 wsJobSpec complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="wsJobSpec"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="requirements" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="taskSpecs" type="{http://gatewayws.controlws.broker.ourgrid.org/}wsTaskSpec" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "wsJobSpec", propOrder = { "label", "requirements", "taskSpecs" }) public class WsJobSpec { protected String label; protected String requirements; @XmlElement(nillable = true) protected List<WsTaskSpec> taskSpecs; /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the requirements property. * * @return * possible object is * {@link String } * */ public String getRequirements() { return requirements; } /** * Sets the value of the requirements property. * * @param value * allowed object is * {@link String } * */ public void setRequirements(String value) { this.requirements = value; } /** * Gets the value of the taskSpecs property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the taskSpecs property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTaskSpecs().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link WsTaskSpec } * * */ public List<WsTaskSpec> getTaskSpecs() { if (taskSpecs == null) { taskSpecs = new ArrayList<WsTaskSpec>(); } return this.taskSpecs; } }