> + public String getEntityId() {
> + return entityId;
> + }
> +
> + public ProjectTeam getProjectTeam() {
> + return projectTeam;
> + }
> +
> + @Override
> + public boolean equals(Object obj) {
> + if (this == obj)
> + return true;
> + if (obj == null || getClass() != obj.getClass())
> + return false;
> + ObjectAccessControls that = ObjectAccessControls.class.cast(obj);
> + return equal(this.kind, that.kind) && equal(this.bucket, that.bucket)
> && equal(this.object, that.object)
Should `equals` check other fields, such as `id`, `selfLink`, and `etag`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/36/files#r16565322