package org.gcube.resource.management.quota.library.quotedefault; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement(name = "QuotaList") @XmlAccessorType (XmlAccessType.FIELD) public class QuotaDefaultList { @XmlElementRefs({ @XmlElementRef(type = StorageQuotaDefault.class), @XmlElementRef(type = ServiceQuotaDefault.class) }) private List quotaList= null; public List getQuotaDefaultList() { return quotaList; } public void setQuotaDefaultList(List quotaList) { this.quotaList = quotaList; } }