1 /** 2 * This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 * 6 * If it is not possible or desirable to put the notice in a particular 7 * file, then You may include the notice in a location (such as a LICENSE 8 * file in a relevant directory) where a recipient would be likely to look 9 * for such a notice. 10 11 * 12 */ 13 14 /* --------------------------------------------------------------------------- 15 * U.S. Government, Department of the Army 16 * Army Materiel Command 17 * Research Development Engineering Command 18 * Communications Electronics Research Development and Engineering Center 19 * --------------------------------------------------------------------------- 20 */ 21 // 22 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 23 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 24 // Any modifications to this file will be lost upon recompilation of the source schema. 25 // Generated on: 2012.08.30 at 12:37:46 PM EDT 26 // 27 28 29 package org.miloss.fgsms.auxsrv.status; 30 31 import java.util.ArrayList; 32 import java.util.List; 33 import javax.xml.bind.annotation.XmlAccessType; 34 import javax.xml.bind.annotation.XmlAccessorType; 35 import javax.xml.bind.annotation.XmlElement; 36 import javax.xml.bind.annotation.XmlRootElement; 37 import javax.xml.bind.annotation.XmlType; 38 39 40 /** 41 * <p>Java class for anonymous complex type. 42 * 43 * <p>The following schema fragment specifies the expected content contained within this class. 44 * 45 * <pre> 46 * <complexType> 47 * <complexContent> 48 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 49 * <sequence> 50 * <element ref="{}job" maxOccurs="unbounded"/> 51 * </sequence> 52 * </restriction> 53 * </complexContent> 54 * </complexType> 55 * </pre> 56 * 57 * 58 */ 59 @XmlAccessorType(XmlAccessType.FIELD) 60 @XmlType(name = "", propOrder = { 61 "job" 62 }) 63 @XmlRootElement(name = "jobs") 64 public class Jobs { 65 66 @XmlElement(required = true) 67 protected List<Job> job; 68 69 /** 70 * Gets the value of the job property. 71 * 72 * <p> 73 * This accessor method returns a reference to the live list, 74 * not a snapshot. Therefore any modification you make to the 75 * returned list will be present inside the JAXB object. 76 * This is why there is not a <CODE>set</CODE> method for the job property. 77 * 78 * <p> 79 * For example, to add a new item, do as follows: 80 * <pre> 81 * getJob().add(newItem); 82 * </pre> 83 * 84 * 85 * <p> 86 * Objects of the following type(s) are allowed in the list 87 * {@link Job } 88 * 89 * 90 */ 91 public List<Job> getJob() { 92 if (job == null) { 93 job = new ArrayList<Job>(); 94 } 95 return this.job; 96 } 97 98 }