io.github.dft.alliance.model.ArrayOfCommodityInput Maven / Gradle / Ivy
Show all versions of alliance Show documentation
package io.github.dft.alliance.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;
/**
* Java class for ArrayOfCommodityInput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ArrayOfCommodityInput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CommodityInput" type="{http://tempuri.org/}CommodityInput" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfCommodityInput", propOrder = {
"commodityInput"
})
public class ArrayOfCommodityInput {
@XmlElement(name = "CommodityInput", nillable = true)
protected List commodityInput;
/**
* Gets the value of the commodityInput property.
*
*
* 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 set
method for the commodityInput property.
*
*
* For example, to add a new item, do as follows:
*
* getCommodityInput().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CommodityInput }
*
*
*/
public List getCommodityInput() {
if (commodityInput == null) {
commodityInput = new ArrayList();
}
return this.commodityInput;
}
}