public boolean equals()

in aws-xray-recorder-sdk-sql/src/main/java/com/amazonaws/xray/sql/ConnectionInfo.java [58:70]


    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        ConnectionInfo that = (ConnectionInfo) o;
        return Objects.equals(sanitizedUrl, that.sanitizedUrl) &&
            Objects.equals(user, that.user) &&
            Objects.equals(host, that.host) &&
            Objects.equals(dbName, that.dbName);
    }