org.interledger.stream.ReceiverAmountPaymentTracker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-core Show documentation
Show all versions of stream-core Show documentation
Core libraries for implementing the STREAM protocol.
package org.interledger.stream;
/**
* An extension of {@link PaymentTracker} that defines the {@link #getOriginalAmount()} to be in the receiver's units.
*/
public interface ReceiverAmountPaymentTracker extends PaymentTracker {
@Override
default SenderAmountMode getOriginalAmountMode() {
return SenderAmountMode.RECEIVER_AMOUNT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy