> + }
> +
> + public String getRemoteBlobName() {
> + return remoteBlobName;
> + }
> +
> + public File getLocalFile() {
> + return localFile;
> + }
> +
> + public String getETag() {
> + return eTag;
> + }
> +
> + public boolean isUploaded() {
> + return eTag != null;
Since there's no way to _set_ the eTag other than via the constructor (is that
intentional?), we might as well add a boolean `uploaded` and set its value in
the constructor..?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-examples/pull/11/files#r5438286