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

com.github.nscuro.wdm.binary.util.googlecs.GoogleCloudStorageEntry Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy