package org.opendaylight.openflowjava.tools; 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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for anonymous complex type. */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "configuration" }) @XmlRootElement(name = "configurations") public class Configurations { @XmlElement(required = true) private List configuration; /** * Gets the value of the configuration 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 configuration property. * *

* For example, to add a new item, do as follows: *

     *    getConfiguration().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ConfigurationType } * * */ public List getConfiguration() { if (configuration == null) { configuration = new ArrayList<>(); } return this.configuration; } public void setConfiguration(List configuration) { this.configuration = configuration; } }