View Javadoc

1   package org.fosstrak.epcis.model;
2   
3   import java.util.ArrayList;
4   import java.util.List;
5   import javax.xml.bind.annotation.XmlAccessType;
6   import javax.xml.bind.annotation.XmlAccessorType;
7   import javax.xml.bind.annotation.XmlElement;
8   import javax.xml.bind.annotation.XmlType;
9   
10  /**
11   * <p>
12   * Java class for BusinessTransactionListType complex type.
13   * <p>
14   * The following schema fragment specifies the expected content contained within
15   * this class.
16   * 
17   * <pre>
18   * &lt;complexType name="BusinessTransactionListType">
19   *   &lt;complexContent>
20   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21   *       &lt;sequence>
22   *         &lt;element name="bizTransaction" type="{urn:epcglobal:epcis:xsd:1}BusinessTransactionType" maxOccurs="unbounded"/>
23   *       &lt;/sequence>
24   *     &lt;/restriction>
25   *   &lt;/complexContent>
26   * &lt;/complexType>
27   * </pre>
28   */
29  @XmlAccessorType(XmlAccessType.FIELD)
30  @XmlType(name = "BusinessTransactionListType", namespace = "urn:epcglobal:epcis:xsd:1", propOrder = { "bizTransaction" })
31  public class BusinessTransactionListType {
32  
33      @XmlElement(required = true)
34      protected List<BusinessTransactionType> bizTransaction;
35  
36      /**
37       * Gets the value of the bizTransaction property.
38       * <p>
39       * This accessor method returns a reference to the live list, not a
40       * snapshot. Therefore any modification you make to the returned list will
41       * be present inside the JAXB object. This is why there is not a
42       * <CODE>set</CODE> method for the bizTransaction property.
43       * <p>
44       * For example, to add a new item, do as follows:
45       * 
46       * <pre>
47       * getBizTransaction().add(newItem);
48       * </pre>
49       * <p>
50       * Objects of the following type(s) are allowed in the list
51       * {@link BusinessTransactionType }
52       */
53      public List<BusinessTransactionType> getBizTransaction() {
54          if (bizTransaction == null) {
55              bizTransaction = new ArrayList<BusinessTransactionType>();
56          }
57          return this.bizTransaction;
58      }
59  
60  }