in src/main/java/org/apache/fineract/cn/command/repository/CommandSource.java [115:124]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CommandSource that = (CommandSource) o;
if (!source.equals(that.source)) return false;
if (!bucket.equals(that.bucket)) return false;
return createdOn.equals(that.createdOn);
}