in api/src/main/java/org/apache/fineract/cn/stellarbridge/api/v1/domain/BridgeConfiguration.java [100:120]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BridgeConfiguration that = (BridgeConfiguration) o;
return Objects
.equals(fineractOutgoingStagingLedgerIdentifier,
that.fineractOutgoingStagingLedgerIdentifier)
&&
Objects
.equals(fineractStellarAssetsLedgerIdentifier,
that.fineractStellarAssetsLedgerIdentifier)
&&
Objects.equals(fineractIncomingStagingLedgerIdentifier,
that.fineractIncomingStagingLedgerIdentifier) &&
Objects.equals(stellarAccountIdentifier, that.stellarAccountIdentifier) &&
Objects.equals(stellarPrivateKey, that.stellarPrivateKey);
}