> +   }
> +
> +   public Optional<Date> getUpdated() {
> +      return updated;
> +   }
> +
> +   public String getZone() {
> +      return zone;
> +   }
> +
> +   public String getId() {
> +      return id;
> +   }
> +
> +   @Override
> +   public boolean equals(Object o) {

In general, prefer `Objects.equals(...)`. Here is an example in the Nova 
[Network](https://github.com/jclouds/jclouds/blob/master/apis/openstack-nova/src/main/java/org/jclouds/openstack/nova/v2_0/domain/Network.java#L75)
 class.

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

Reply via email to