package eu.eudat.logic.proxy.config.entities; import java.util.List; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementWrapper; import eu.eudat.logic.proxy.config.FetchStrategy; import eu.eudat.logic.proxy.config.UrlConfiguration; public class ValidationUrls { List urls; FetchStrategy fetchMode; public List getUrls() { return urls; } @XmlElementWrapper @XmlElement(name = "urlConfig") public void setUrls(List urls) { this.urls = urls; } public FetchStrategy getFetchMode() { return fetchMode; } @XmlElement(name = "fetchMode") public void setFetchMode(FetchStrategy fetchMode) { this.fetchMode = fetchMode; } }