com.github.nscuro.wdm.binary.ie.IEDriverServerRelease Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webdriver-manager Show documentation
Show all versions of webdriver-manager Show documentation
Simplifying WebDriver instantiation
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;
}
}