public boolean equals()

in src/main/java/com/amazonaws/lex/twilio/sample/server/CallIdentifier.java [48:55]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        CallIdentifier that = (CallIdentifier) o;
        return accountId.equals(that.accountId) &&
                callId.equals(that.callId) &&
                streamSid.equals(that.streamSid);
    }