public boolean equals()

in service/src/main/java/org/apache/fineract/cn/identity/internal/repository/PermittableType.java [65:72]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    PermittableType that = (PermittableType) o;
    return Objects.equals(path, that.path) &&
            Objects.equals(method, that.method) &&
            Objects.equals(sourceGroupId, that.sourceGroupId);
  }