in alloydb-jdbc-connector/src/main/java/com/google/cloud/alloydb/ConnectorConfig.java [60:76]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof ConnectorConfig)) {
return false;
}
ConnectorConfig that = (ConnectorConfig) o;
return Objects.equal(targetPrincipal, that.targetPrincipal)
&& Objects.equal(delegates, that.delegates)
&& Objects.equal(adminServiceEndpoint, that.adminServiceEndpoint)
&& Objects.equal(googleCredentialsSupplier, that.googleCredentialsSupplier)
&& Objects.equal(googleCredentials, that.googleCredentials)
&& Objects.equal(googleCredentialsPath, that.googleCredentialsPath)
&& Objects.equal(quotaProject, that.quotaProject)
&& Objects.equal(refreshStrategy, that.refreshStrategy);
}