in aws-android-sdk-iot/src/main/java/com/amazonaws/services/iot/model/Action.java [1395:1507]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Action == false)
return false;
Action other = (Action) obj;
if (other.getDynamoDB() == null ^ this.getDynamoDB() == null)
return false;
if (other.getDynamoDB() != null && other.getDynamoDB().equals(this.getDynamoDB()) == false)
return false;
if (other.getDynamoDBv2() == null ^ this.getDynamoDBv2() == null)
return false;
if (other.getDynamoDBv2() != null
&& other.getDynamoDBv2().equals(this.getDynamoDBv2()) == false)
return false;
if (other.getLambda() == null ^ this.getLambda() == null)
return false;
if (other.getLambda() != null && other.getLambda().equals(this.getLambda()) == false)
return false;
if (other.getSns() == null ^ this.getSns() == null)
return false;
if (other.getSns() != null && other.getSns().equals(this.getSns()) == false)
return false;
if (other.getSqs() == null ^ this.getSqs() == null)
return false;
if (other.getSqs() != null && other.getSqs().equals(this.getSqs()) == false)
return false;
if (other.getKinesis() == null ^ this.getKinesis() == null)
return false;
if (other.getKinesis() != null && other.getKinesis().equals(this.getKinesis()) == false)
return false;
if (other.getRepublish() == null ^ this.getRepublish() == null)
return false;
if (other.getRepublish() != null
&& other.getRepublish().equals(this.getRepublish()) == false)
return false;
if (other.getS3() == null ^ this.getS3() == null)
return false;
if (other.getS3() != null && other.getS3().equals(this.getS3()) == false)
return false;
if (other.getFirehose() == null ^ this.getFirehose() == null)
return false;
if (other.getFirehose() != null && other.getFirehose().equals(this.getFirehose()) == false)
return false;
if (other.getCloudwatchMetric() == null ^ this.getCloudwatchMetric() == null)
return false;
if (other.getCloudwatchMetric() != null
&& other.getCloudwatchMetric().equals(this.getCloudwatchMetric()) == false)
return false;
if (other.getCloudwatchAlarm() == null ^ this.getCloudwatchAlarm() == null)
return false;
if (other.getCloudwatchAlarm() != null
&& other.getCloudwatchAlarm().equals(this.getCloudwatchAlarm()) == false)
return false;
if (other.getCloudwatchLogs() == null ^ this.getCloudwatchLogs() == null)
return false;
if (other.getCloudwatchLogs() != null
&& other.getCloudwatchLogs().equals(this.getCloudwatchLogs()) == false)
return false;
if (other.getElasticsearch() == null ^ this.getElasticsearch() == null)
return false;
if (other.getElasticsearch() != null
&& other.getElasticsearch().equals(this.getElasticsearch()) == false)
return false;
if (other.getSalesforce() == null ^ this.getSalesforce() == null)
return false;
if (other.getSalesforce() != null
&& other.getSalesforce().equals(this.getSalesforce()) == false)
return false;
if (other.getIotAnalytics() == null ^ this.getIotAnalytics() == null)
return false;
if (other.getIotAnalytics() != null
&& other.getIotAnalytics().equals(this.getIotAnalytics()) == false)
return false;
if (other.getIotEvents() == null ^ this.getIotEvents() == null)
return false;
if (other.getIotEvents() != null
&& other.getIotEvents().equals(this.getIotEvents()) == false)
return false;
if (other.getIotSiteWise() == null ^ this.getIotSiteWise() == null)
return false;
if (other.getIotSiteWise() != null
&& other.getIotSiteWise().equals(this.getIotSiteWise()) == false)
return false;
if (other.getStepFunctions() == null ^ this.getStepFunctions() == null)
return false;
if (other.getStepFunctions() != null
&& other.getStepFunctions().equals(this.getStepFunctions()) == false)
return false;
if (other.getTimestream() == null ^ this.getTimestream() == null)
return false;
if (other.getTimestream() != null
&& other.getTimestream().equals(this.getTimestream()) == false)
return false;
if (other.getHttp() == null ^ this.getHttp() == null)
return false;
if (other.getHttp() != null && other.getHttp().equals(this.getHttp()) == false)
return false;
if (other.getKafka() == null ^ this.getKafka() == null)
return false;
if (other.getKafka() != null && other.getKafka().equals(this.getKafka()) == false)
return false;
if (other.getOpenSearch() == null ^ this.getOpenSearch() == null)
return false;
if (other.getOpenSearch() != null
&& other.getOpenSearch().equals(this.getOpenSearch()) == false)
return false;
return true;
}