-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWithdrawResult.java
More file actions
39 lines (30 loc) · 840 Bytes
/
Copy pathWithdrawResult.java
File metadata and controls
39 lines (30 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import java.util.Map;
/**
* Returns whether the result succeeded, and if so, what denominations
* to withdraw from the vault
*/
public class WithdrawResult {
private boolean didSucceed = false;
private Map<Integer,Integer> withdrawAmount;
private String errorMessage = null;
public WithdrawResult() {
}
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public void setDidSucceed(boolean didSucceed) {
this.didSucceed = didSucceed;
}
public boolean didSucceed() {
return didSucceed;
}
public Map<Integer, Integer> getWithdrawAmount() {
return this.withdrawAmount;
}
public void setWithdrawAmount(Map<Integer,Integer> withdrawAmount) {
this.withdrawAmount = withdrawAmount;
}
}