com.github.nscuro.wdm.binary.util.googlecs.GoogleCloudStorageEntry 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.util.googlecs;
/**
* @since 0.2.0
*/
public class GoogleCloudStorageEntry {
private final String key;
private final String url;
public GoogleCloudStorageEntry(final String key, final String url) {
this.key = key;
this.url = url;
}
public final String getKey() {
return key;
}
public final String getUrl() {
return url;
}
}