> +import static com.google.common.base.Objects.equal;
> +import static com.google.common.base.Objects.toStringHelper;
> +
> +import com.google.common.base.Objects;
> +
> +/**
> + * This is an internal object used in both Bucket and Object representation
> + */
> +
> +public final class Owner {
> +
> + private final String entity;
> + private final String entityId;
> +
> + public Owner(String entity, String entityId) {
> + this.entity = entity;
What is this if it's not the identifier? Is it the name? Or is "entity" a
domain object that is always a string?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532835