public boolean equals()

in api/src/main/java/org/apache/fineract/cn/identity/api/v1/domain/CallEndpointSet.java [63:69]


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