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

io.digdag.spi.DirectDownloadHandle Maven / Gradle / Ivy

package io.digdag.spi;

import java.net.URL;
import java.net.MalformedURLException;
import org.immutables.value.Value;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

@Value.Immutable
public interface DirectDownloadHandle
{
    @JsonValue
    URL getUrl();

    static DirectDownloadHandle of(String url)
    {
        try {
            return of(new URL(url));
        }
        catch (MalformedURLException ex) {
            throw new IllegalArgumentException(ex);
        }
    }

    @JsonCreator
    static DirectDownloadHandle of(URL url)
    {
        return ImmutableDirectDownloadHandle.builder()
            .url(url)
            .build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy