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

io.github.bakedlibs.dough.updater.UpdateInfo Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package io.github.bakedlibs.dough.updater;

import java.net.URL;

import javax.annotation.ParametersAreNonnullByDefault;

import io.github.bakedlibs.dough.versions.Version;

// TODO: Convert to Java 16 record
class UpdateInfo {

    private final URL url;
    private final Version version;

    @ParametersAreNonnullByDefault
    UpdateInfo(URL url, Version version) {
        this.url = url;
        this.version = version;
    }

    URL getUrl() {
        return url;
    }

    Version getVersion() {
        return version;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy