in aws-android-sdk-cognitoidentityprovider/src/main/java/com/amazonaws/services/cognitoidentityprovider/model/CreateUserPoolRequest.java [1921:2039]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateUserPoolRequest == false)
return false;
CreateUserPoolRequest other = (CreateUserPoolRequest) obj;
if (other.getPoolName() == null ^ this.getPoolName() == null)
return false;
if (other.getPoolName() != null && other.getPoolName().equals(this.getPoolName()) == false)
return false;
if (other.getPolicies() == null ^ this.getPolicies() == null)
return false;
if (other.getPolicies() != null && other.getPolicies().equals(this.getPolicies()) == false)
return false;
if (other.getLambdaConfig() == null ^ this.getLambdaConfig() == null)
return false;
if (other.getLambdaConfig() != null
&& other.getLambdaConfig().equals(this.getLambdaConfig()) == false)
return false;
if (other.getAutoVerifiedAttributes() == null ^ this.getAutoVerifiedAttributes() == null)
return false;
if (other.getAutoVerifiedAttributes() != null
&& other.getAutoVerifiedAttributes().equals(this.getAutoVerifiedAttributes()) == false)
return false;
if (other.getAliasAttributes() == null ^ this.getAliasAttributes() == null)
return false;
if (other.getAliasAttributes() != null
&& other.getAliasAttributes().equals(this.getAliasAttributes()) == false)
return false;
if (other.getUsernameAttributes() == null ^ this.getUsernameAttributes() == null)
return false;
if (other.getUsernameAttributes() != null
&& other.getUsernameAttributes().equals(this.getUsernameAttributes()) == false)
return false;
if (other.getSmsVerificationMessage() == null ^ this.getSmsVerificationMessage() == null)
return false;
if (other.getSmsVerificationMessage() != null
&& other.getSmsVerificationMessage().equals(this.getSmsVerificationMessage()) == false)
return false;
if (other.getEmailVerificationMessage() == null
^ this.getEmailVerificationMessage() == null)
return false;
if (other.getEmailVerificationMessage() != null
&& other.getEmailVerificationMessage().equals(this.getEmailVerificationMessage()) == false)
return false;
if (other.getEmailVerificationSubject() == null
^ this.getEmailVerificationSubject() == null)
return false;
if (other.getEmailVerificationSubject() != null
&& other.getEmailVerificationSubject().equals(this.getEmailVerificationSubject()) == false)
return false;
if (other.getVerificationMessageTemplate() == null
^ this.getVerificationMessageTemplate() == null)
return false;
if (other.getVerificationMessageTemplate() != null
&& other.getVerificationMessageTemplate().equals(
this.getVerificationMessageTemplate()) == false)
return false;
if (other.getSmsAuthenticationMessage() == null
^ this.getSmsAuthenticationMessage() == null)
return false;
if (other.getSmsAuthenticationMessage() != null
&& other.getSmsAuthenticationMessage().equals(this.getSmsAuthenticationMessage()) == false)
return false;
if (other.getMfaConfiguration() == null ^ this.getMfaConfiguration() == null)
return false;
if (other.getMfaConfiguration() != null
&& other.getMfaConfiguration().equals(this.getMfaConfiguration()) == false)
return false;
if (other.getDeviceConfiguration() == null ^ this.getDeviceConfiguration() == null)
return false;
if (other.getDeviceConfiguration() != null
&& other.getDeviceConfiguration().equals(this.getDeviceConfiguration()) == false)
return false;
if (other.getEmailConfiguration() == null ^ this.getEmailConfiguration() == null)
return false;
if (other.getEmailConfiguration() != null
&& other.getEmailConfiguration().equals(this.getEmailConfiguration()) == false)
return false;
if (other.getSmsConfiguration() == null ^ this.getSmsConfiguration() == null)
return false;
if (other.getSmsConfiguration() != null
&& other.getSmsConfiguration().equals(this.getSmsConfiguration()) == false)
return false;
if (other.getUserPoolTags() == null ^ this.getUserPoolTags() == null)
return false;
if (other.getUserPoolTags() != null
&& other.getUserPoolTags().equals(this.getUserPoolTags()) == false)
return false;
if (other.getAdminCreateUserConfig() == null ^ this.getAdminCreateUserConfig() == null)
return false;
if (other.getAdminCreateUserConfig() != null
&& other.getAdminCreateUserConfig().equals(this.getAdminCreateUserConfig()) == false)
return false;
if (other.getSchema() == null ^ this.getSchema() == null)
return false;
if (other.getSchema() != null && other.getSchema().equals(this.getSchema()) == false)
return false;
if (other.getUserPoolAddOns() == null ^ this.getUserPoolAddOns() == null)
return false;
if (other.getUserPoolAddOns() != null
&& other.getUserPoolAddOns().equals(this.getUserPoolAddOns()) == false)
return false;
if (other.getUsernameConfiguration() == null ^ this.getUsernameConfiguration() == null)
return false;
if (other.getUsernameConfiguration() != null
&& other.getUsernameConfiguration().equals(this.getUsernameConfiguration()) == false)
return false;
if (other.getAccountRecoverySetting() == null ^ this.getAccountRecoverySetting() == null)
return false;
if (other.getAccountRecoverySetting() != null
&& other.getAccountRecoverySetting().equals(this.getAccountRecoverySetting()) == false)
return false;
return true;
}