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

com.github.nscuro.wdm.binary.ie.IEDriverServerRelease Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package com.github.nscuro.wdm.binary.ie;

import com.github.nscuro.wdm.Architecture;
import com.github.nscuro.wdm.binary.util.googlecs.GoogleCloudStorageEntry;

final class IEDriverServerRelease extends GoogleCloudStorageEntry {

    private final String version;

    private final Architecture architecture;

    IEDriverServerRelease(final String key, final String url,
                          final String version, final Architecture architecture) {
        super(key, url);

        this.version = version;
        this.architecture = architecture;
    }

    public String getVersion() {
        return version;
    }

    public Architecture getArchitecture() {
        return architecture;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy