package eu.eudat.logic.proxy.config.entities; import eu.eudat.logic.proxy.config.FetchStrategy; import eu.eudat.logic.proxy.config.UrlConfiguration; import jakarta.xml.bind.annotation.XmlElement; import jakarta.xml.bind.annotation.XmlElementWrapper; import java.util.List; public class GrantUrls extends GenericUrls{ 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; } }