in cloudsigma2/src/main/java/org/jclouds/cloudsigma2/domain/Job.java [77:91]
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (!(obj instanceof Job)) return false;
Job other = (Job) obj;
if (resourceUri == null) {
if (other.resourceUri != null) return false;
} else if (!resourceUri.equals(other.resourceUri))
return false;
if (uuid == null) {
if (other.uuid != null) return false;
} else if (!uuid.equals(other.uuid))
return false;
return true;
}