public boolean equals()

in service/src/main/java/org/apache/fineract/cn/notification/service/internal/repository/TemplateEntity.java [98:106]


	public boolean equals(Object o) {
		if (this == o) return true;
		if (o == null || getClass() != o.getClass()) return false;
		TemplateEntity that = (TemplateEntity) o;
		return Objects.equals(id, that.id) &&
				Objects.equals(templateIdentifier, that.templateIdentifier) &&
				Objects.equals(subject, that.subject) &&
				Objects.equals(url, that.url);
	}