forked from ZipCodeCore/FinalGroupProjects-Java
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathViews.java
More file actions
49 lines (35 loc) · 1.01 KB
/
Views.java
File metadata and controls
49 lines (35 loc) · 1.01 KB
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
40
41
42
43
44
45
46
47
48
49
package runner.views;
public class Views {
public static interface AccountNumber{
}
public static interface AccountType{
}
public static class AllAccounts implements AccountNumber, AccountType{
/*
payload: multiple accounts: account number, account balance, account type
*/
}
public static interface AccountActions{
/*
payload: account balance
*/
}
public static class AccountDetails implements AccountNumber, AccountType, AccountActions{
/*
payload: account balance, interest rate, date of creation, account number, routing number, account type
*/
}
public static class AccountSpecific implements AccountActions{
/*
payload: account balance, transactions
*/
}
public static interface Email{
}
public static interface PhoneNumber{
}
public static interface Address{
}
public static class Profile implements Email, PhoneNumber, Address {
}
}