com.networknt.eventuate.test.domain.AccountSnapshot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-domain Show documentation
Show all versions of test-domain Show documentation
Test banking domain objects.
package com.networknt.eventuate.test.domain;
import com.networknt.eventuate.common.Snapshot;
import java.math.BigDecimal;
public class AccountSnapshot implements Snapshot {
private BigDecimal balance;
public AccountSnapshot() {
}
public AccountSnapshot(BigDecimal balance) {
this.balance = balance;
}
public BigDecimal getBalance() {
return balance;
}
}