View Javadoc
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   * &lt;complexType>
47   *   &lt;complexContent>
48   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
49   *       &lt;sequence>
50   *         &lt;element ref="{}triggerGroup" maxOccurs="unbounded"/>
51   *       &lt;/sequence>
52   *     &lt;/restriction>
53   *   &lt;/complexContent>
54   * &lt;/complexType>
55   * </pre>
56   * 
57   * 
58   */
59  @XmlAccessorType(XmlAccessType.FIELD)
60  @XmlType(name = "", propOrder = {
61      "triggerGroup"
62  })
63  @XmlRootElement(name = "triggers")
64  public class Triggers {
65  
66      @XmlElement(required = true)
67      protected List<TriggerGroup> triggerGroup;
68  
69      /**
70       * Gets the value of the triggerGroup 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 triggerGroup property.
77       * 
78       * <p>
79       * For example, to add a new item, do as follows:
80       * <pre>
81       *    getTriggerGroup().add(newItem);
82       * </pre>
83       * 
84       * 
85       * <p>
86       * Objects of the following type(s) are allowed in the list
87       * {@link TriggerGroup }
88       * 
89       * 
90       */
91      public List<TriggerGroup> getTriggerGroup() {
92          if (triggerGroup == null) {
93              triggerGroup = new ArrayList<TriggerGroup>();
94          }
95          return this.triggerGroup;
96      }
97  
98  }