package eu.eudat.logic.proxy.config.entities; import eu.eudat.logic.proxy.config.FetchStrategy; import eu.eudat.logic.proxy.config.UrlConfiguration; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementWrapper; import java.util.List; /** * Created by ikalyvas on 7/9/2018. */ public class TagUrls { 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; } }