> +import com.google.inject.ImplementedBy;
> +
> +/**
> + * Describes a snapshot of a {@link Volume}
> + *
> + * @author Andrew Bayer
> + */
> +@ImplementedBy(SnapshotImpl.class)
> +public interface Snapshot {
> +
> +   /**
> +    * Unique identifier.
> +    *
> +    */
> +   @Nullable
> +   String getId();

is it helpful to separate interface from impl in this class? i.e. is there a 
reasonable chance of useful alternate impls?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/109/files#r6467386

Reply via email to