public boolean equals()

in aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/CloudFrontEvent.java [585:611]


        public boolean equals(Object obj) {
            if (this == obj)
                return true;
            if (obj == null)
                return false;

            if (obj instanceof Response == false)
                return false;
            Response other = (Response) obj;
            if (other.getStatus() == null ^ this.getStatus() == null)
                return false;
            if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
                return false;
            if (other.getStatusDescription() == null ^ this.getStatusDescription() == null)
                return false;
            if (other.getStatusDescription() != null && other.getStatusDescription().equals(this.getStatusDescription()) == false)
                return false;
            if (other.getHttpVersion() == null ^ this.getHttpVersion() == null)
                return false;
            if (other.getHttpVersion() != null && other.getHttpVersion().equals(this.getHttpVersion()) == false)
                return false;
            if (other.getHeaders() == null ^ this.getHeaders() == null)
                return false;
            if (other.getHeaders() != null && other.getHeaders().equals(this.getHeaders()) == false)
                return false;
            return true;
        }