All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sdmxdl.util.web.SdmxWebEvents Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta.8
Show newest version
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