in core/src/main/thrift-gen-java/org/apache/accumulo/core/compaction/thrift/CompactionCoordinatorService.java [1848:1900]
public boolean equals(compactionCompleted_args that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_tinfo = true && this.isSetTinfo();
boolean that_present_tinfo = true && that.isSetTinfo();
if (this_present_tinfo || that_present_tinfo) {
if (!(this_present_tinfo && that_present_tinfo))
return false;
if (!this.tinfo.equals(that.tinfo))
return false;
}
boolean this_present_credentials = true && this.isSetCredentials();
boolean that_present_credentials = true && that.isSetCredentials();
if (this_present_credentials || that_present_credentials) {
if (!(this_present_credentials && that_present_credentials))
return false;
if (!this.credentials.equals(that.credentials))
return false;
}
boolean this_present_externalCompactionId = true && this.isSetExternalCompactionId();
boolean that_present_externalCompactionId = true && that.isSetExternalCompactionId();
if (this_present_externalCompactionId || that_present_externalCompactionId) {
if (!(this_present_externalCompactionId && that_present_externalCompactionId))
return false;
if (!this.externalCompactionId.equals(that.externalCompactionId))
return false;
}
boolean this_present_extent = true && this.isSetExtent();
boolean that_present_extent = true && that.isSetExtent();
if (this_present_extent || that_present_extent) {
if (!(this_present_extent && that_present_extent))
return false;
if (!this.extent.equals(that.extent))
return false;
}
boolean this_present_stats = true && this.isSetStats();
boolean that_present_stats = true && that.isSetStats();
if (this_present_stats || that_present_stats) {
if (!(this_present_stats && that_present_stats))
return false;
if (!this.stats.equals(that.stats))
return false;
}
return true;
}