public boolean equals()

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


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    PermissionType that = (PermissionType) o;
    return Objects.equals(permittableGroupIdentifier, that.permittableGroupIdentifier) &&
            Objects.equals(allowedOperations, that.allowedOperations);
  }