in src/main/java/com/aliyun/openservices/log/common/ScheduledSQLConfiguration.java [203:263]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ScheduledSQLConfiguration that = (ScheduledSQLConfiguration) o;
if (getScript() != null ? !getScript().equals(that.getScript()) : that.getScript() != null) {
return false;
}
if (getSqlType() != null ? !getSqlType().equals(that.getSqlType()) : that.getSqlType() != null) {
return false;
}
if (getResourcePool() != null ? !getResourcePool().equals(that.getResourcePool()) : that.getResourcePool() != null) {
return false;
}
if (getDestEndpoint() != null ? !getDestEndpoint().equals(that.getDestEndpoint()) : that.getDestEndpoint() != null) {
return false;
}
if (getDestProject() != null ? !getDestProject().equals(that.getDestProject()) : that.getDestProject() != null) {
return false;
}
if (getSourceLogstore() != null ? !getSourceLogstore().equals(that.getSourceLogstore()) : that.getSourceLogstore() != null) {
return false;
}
if (getDestLogstore() != null ? !getDestLogstore().equals(that.getDestLogstore()) : that.getDestLogstore() != null) {
return false;
}
if (getRoleArn() != null ? !getRoleArn().equals(that.getRoleArn()) : that.getRoleArn() != null) {
return false;
}
if (getDestRoleArn() != null ? !getDestRoleArn().equals(that.getDestRoleArn()) : that.getDestRoleArn() != null) {
return false;
}
if (getFromTimeExpr() != null ? !getFromTimeExpr().equals(that.getFromTimeExpr()) : that.getFromTimeExpr() != null) {
return false;
}
if (getToTimeExpr() != null ? !getToTimeExpr().equals(that.getToTimeExpr()) : that.getToTimeExpr() != null) {
return false;
}
if (getMaxRetries() != null ? !getMaxRetries().equals(that.getMaxRetries()) : that.getMaxRetries() != null) {
return false;
}
if (getFromTime() != null ? !getFromTime().equals(that.getFromTime()) : that.getFromTime() != null) {
return false;
}
if (getToTime() != null ? !getToTime().equals(that.getToTime()) : that.getToTime() != null) {
return false;
}
if (getDataFormat() != null ? !getDataFormat().equals(that.getDataFormat()) : that.getDataFormat() != null) {
return false;
}
if (getParameters() != null ? !getParameters().equals(that.getParameters()) : that.getParameters() != null) {
return false;
}
if (getForceComplete() != null ? !getForceComplete().equals(that.getForceComplete()) : that.getForceComplete() != null) {
return false;
}
return getMaxRunTimeInSeconds() != null ? !getMaxRunTimeInSeconds().equals(that.getMaxRunTimeInSeconds()) : that.getMaxRunTimeInSeconds() != null;
}