in vault-core/src/main/java/org/apache/jackrabbit/vault/util/RepositoryCopier.java [624:665]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
RepositoryCopier other = (RepositoryCopier) obj;
if (abort != other.abort)
return false;
if (batchSize != other.batchSize)
return false;
if (noOrdering != other.noOrdering)
return false;
if (onlyNewer != other.onlyNewer)
return false;
if (prefixMapping == null) {
if (other.prefixMapping != null)
return false;
} else if (!prefixMapping.equals(other.prefixMapping))
return false;
if (resumeFrom == null) {
if (other.resumeFrom != null)
return false;
} else if (!resumeFrom.equals(other.resumeFrom))
return false;
if (srcFilter == null) {
if (other.srcFilter != null)
return false;
} else if (!srcFilter.equals(other.srcFilter))
return false;
if (throttle != other.throttle)
return false;
if (tracker == null) {
if (other.tracker != null)
return false;
} else if (!tracker.equals(other.tracker))
return false;
if (update != other.update)
return false;
return true;
}