public boolean equals()

in aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/APIGatewayProxyRequestEvent.java [509:587]


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

            if (obj instanceof ProxyRequestContext == false)
                return false;
            ProxyRequestContext other = (ProxyRequestContext) obj;
            if (other.getAccountId() == null ^ this.getAccountId() == null)
                return false;
            if (other.getAccountId() != null && other.getAccountId().equals(this.getAccountId()) == false)
                return false;
            if (other.getResourceId() == null ^ this.getResourceId() == null)
                return false;
            if (other.getResourceId() != null && other.getResourceId().equals(this.getResourceId()) == false)
                return false;
            if (other.getStage() == null ^ this.getStage() == null)
                return false;
            if (other.getStage() != null && other.getStage().equals(this.getStage()) == false)
                return false;
            if (other.getRequestId() == null ^ this.getRequestId() == null)
                return false;
            if (other.getRequestId() != null && other.getRequestId().equals(this.getRequestId()) == false)
                return false;
            if (other.getIdentity() == null ^ this.getIdentity() == null)
                return false;
            if (other.getIdentity() != null && other.getIdentity().equals(this.getIdentity()) == false)
                return false;
            if (other.getResourcePath() == null ^ this.getResourcePath() == null)
                return false;
            if (other.getResourcePath() != null && other.getResourcePath().equals(this.getResourcePath()) == false)
                return false;
            if (other.getHttpMethod() == null ^ this.getHttpMethod() == null)
                return false;
            if (other.getHttpMethod() != null && other.getHttpMethod().equals(this.getHttpMethod()) == false)
                return false;
            if (other.getApiId() == null ^ this.getApiId() == null)
                return false;
            if (other.getApiId() != null && other.getApiId().equals(this.getApiId()) == false)
                return false;
            if (other.getPath() == null ^ this.getPath() == null)
                return false;
            if (other.getPath() != null && other.getPath().equals(this.getPath()) == false)
                return false;
            if (other.getAuthorizer() == null ^ this.getAuthorizer() == null)
                return false;
            if (other.getAuthorizer() != null && !other.getAuthorizer().equals(this.getAuthorizer()))
                return false;
            if (other.getOperationName() == null ^ this.getOperationName() == null)
                return false;
            if (other.getOperationName() != null && !other.getOperationName().equals(this.getOperationName()))
                return false;
            if (other.getExtendedRequestId() == null ^ this.getExtendedRequestId() == null)
                return false;
            if (other.getExtendedRequestId() != null && other.getExtendedRequestId().equals(this.getExtendedRequestId()) == false)
                return false;
            if (other.getRequestTime() == null ^ this.getRequestTime() == null)
                return false;
            if (other.getRequestTime() != null && other.getRequestTime().equals(this.getRequestTime()) == false)
                return false;
            if (other.getRequestTimeEpoch() == null ^ this.getRequestTimeEpoch() == null)
                return false;
            if (other.getRequestTimeEpoch() != null && other.getRequestTimeEpoch().equals(this.getRequestTimeEpoch()) == false)
                return false;
            if (other.getDomainName() == null ^ this.getDomainName() == null)
                return false;
            if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false)
                return false;
            if (other.getDomainPrefix() == null ^ this.getDomainPrefix() == null)
                return false;
            if (other.getDomainPrefix() != null && other.getDomainPrefix().equals(this.getDomainPrefix()) == false)
                return false;
            if (other.getProtocol() == null ^ this.getProtocol() == null)
                return false;
            if (other.getProtocol() != null && other.getProtocol().equals(this.getProtocol()) == false)
                return false;
            return true;
        }