sdmxdl.util.web.SdmxWebEvents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdmx-dl-provider-util Show documentation
Show all versions of sdmx-dl-provider-util Show documentation
Download SDMX data - Provider Util
package sdmxdl.util.web;
import java.net.Proxy;
import java.net.URL;
@lombok.experimental.UtilityClass
public class SdmxWebEvents {
public static String onQuery(URL url, Proxy proxy) {
String result = "Querying " + url;
if (!proxy.equals(Proxy.NO_PROXY)) {
result += " with proxy '" + proxy + "'";
}
return result;
}
public static String onRedirection(URL oldUrl, URL newUrl) {
return "Redirecting to " + newUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy