public boolean equals()

in api/src/main/java/org/apache/fineract/cn/notification/api/v1/domain/EmailConfiguration.java [143:156]


	public boolean equals(Object o) {
		if (this == o) return true;
		if (o == null || getClass() != o.getClass()) return false;
		EmailConfiguration that = (EmailConfiguration) o;
		return Objects.equals(identifier, that.identifier) &&
				Objects.equals(host, that.host) &&
				Objects.equals(port, that.port) &&
				Objects.equals(protocol, that.protocol) &&
				Objects.equals(username, that.username) &&
				Objects.equals(app_password, that.app_password) &&
				Objects.equals(smtp_auth, that.smtp_auth) &&
				Objects.equals(start_tls, that.start_tls) &&
				Objects.equals(state, that.state);
	}