public boolean equals()

in core/src/main/java/com/google/cloud/sql/ConnectorConfig.java [81:101]


  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(adminRootUrl, that.adminRootUrl)
        && Objects.equal(adminServicePath, that.adminServicePath)
        && Objects.equal(googleCredentialsSupplier, that.googleCredentialsSupplier)
        && Objects.equal(googleCredentials, that.googleCredentials)
        && Objects.equal(googleCredentialsPath, that.googleCredentialsPath)
        && Objects.equal(adminQuotaProject, that.adminQuotaProject)
        && Objects.equal(universeDomain, that.universeDomain)
        && Objects.equal(refreshStrategy, that.refreshStrategy)
        && Objects.equal(instanceNameResolver, that.instanceNameResolver)
        && Objects.equal(failoverPeriod, that.failoverPeriod);
  }