in core/src/main/thrift-gen-java/org/apache/accumulo/core/manager/thrift/FateService.java [2833:2903]
public boolean equals(executeFateOperation_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_opid = true && this.isSetOpid();
boolean that_present_opid = true && that.isSetOpid();
if (this_present_opid || that_present_opid) {
if (!(this_present_opid && that_present_opid))
return false;
if (!this.opid.equals(that.opid))
return false;
}
boolean this_present_op = true && this.isSetOp();
boolean that_present_op = true && that.isSetOp();
if (this_present_op || that_present_op) {
if (!(this_present_op && that_present_op))
return false;
if (!this.op.equals(that.op))
return false;
}
boolean this_present_arguments = true && this.isSetArguments();
boolean that_present_arguments = true && that.isSetArguments();
if (this_present_arguments || that_present_arguments) {
if (!(this_present_arguments && that_present_arguments))
return false;
if (!this.arguments.equals(that.arguments))
return false;
}
boolean this_present_options = true && this.isSetOptions();
boolean that_present_options = true && that.isSetOptions();
if (this_present_options || that_present_options) {
if (!(this_present_options && that_present_options))
return false;
if (!this.options.equals(that.options))
return false;
}
boolean this_present_autoClean = true;
boolean that_present_autoClean = true;
if (this_present_autoClean || that_present_autoClean) {
if (!(this_present_autoClean && that_present_autoClean))
return false;
if (this.autoClean != that.autoClean)
return false;
}
return true;
}