![JAR search and dependency download from the Maven repository](/logo.png)
com.qaprosoft.zafira.models.db.config.Configuration Maven / Gradle / Ivy
package com.qaprosoft.zafira.models.db.config;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "arg" })
@XmlRootElement(name = "config")
public class Configuration
{
protected List arg;
public List getArg()
{
if (arg == null)
{
arg = new ArrayList();
}
return this.arg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy