-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOnlineBankingSystem.java
More file actions
238 lines (195 loc) · 6.58 KB
/
OnlineBankingSystem.java
File metadata and controls
238 lines (195 loc) · 6.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
import java.util.Scanner;
/* =========================
CUSTOM EXCEPTIONS
========================= */
class InsufficientBalanceException extends Exception {
public InsufficientBalanceException(String msg) {
super(msg);
}
}
class InvalidCredentialsException extends Exception {
public InvalidCredentialsException(String msg) {
super(msg);
}
}
/* =========================
ABSTRACT CLASS
========================= */
abstract class BankAccount {
private int accountNumber;
private double balance;
public BankAccount(int accountNumber, double balance) {
this.accountNumber = accountNumber;
this.balance = balance;
}
// Encapsulation
public int getAccountNumber() {
return accountNumber;
}
public double getBalance() {
return balance;
}
protected void setBalance(double balance) {
this.balance = balance;
}
// Abstraction
public abstract void calculateInterest();
}
/* =========================
INHERITANCE + POLYMORPHISM
========================= */
class SavingsAccount extends BankAccount {
public SavingsAccount(int accountNumber, double balance) {
super(accountNumber, balance);
}
@Override
public void calculateInterest() {
double interest = getBalance() * 0.04;
setBalance(getBalance() + interest);
System.out.println("Interest added successfully!");
}
}
/* =========================
INTERFACE
========================= */
interface BankService {
void deposit(double amount);
void withdraw(double amount) throws InsufficientBalanceException;
void checkBalance();
}
/* =========================
USER CLASS (LOGIN SECURITY)
========================= */
class User {
private String username;
private String password;
private int attemptsLeft = 3;
private boolean locked = false;
public User(String username, String password) {
this.username = username;
this.password = password;
}
public boolean isLocked() {
return locked;
}
public boolean login(String u, String p) throws InvalidCredentialsException {
if (locked) {
throw new InvalidCredentialsException(
"Account locked due to multiple failed attempts!");
}
if (username.equals(u) && password.equals(p)) {
attemptsLeft = 3; // reset attempts
return true;
} else {
attemptsLeft--;
if (attemptsLeft == 0) {
locked = true;
throw new InvalidCredentialsException(
"Account locked! Too many wrong login attempts.");
}
throw new InvalidCredentialsException(
"Invalid credentials! Attempts left: " + attemptsLeft);
}
}
}
/* =========================
SERVICE IMPLEMENTATION
========================= */
class BankServiceImpl implements BankService {
private BankAccount account;
public BankServiceImpl(BankAccount account) {
this.account = account;
}
@Override
public void deposit(double amount) {
account.setBalance(account.getBalance() + amount);
System.out.println("Deposit successful!");
}
@Override
public void withdraw(double amount) throws InsufficientBalanceException {
if (amount > account.getBalance()) {
throw new InsufficientBalanceException("Insufficient balance!");
}
account.setBalance(account.getBalance() - amount);
System.out.println("Withdrawal successful!");
}
@Override
public void checkBalance() {
System.out.println("Current Balance: ₹" + account.getBalance());
}
}
/* =========================
MAIN CLASS In java
========================= */
public class OnlineBankingSystem {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// Default user
User user = new User("arjun", "1234");
BankAccount account = new SavingsAccount(101, 5000);
BankService service = new BankServiceImpl(account);
boolean loggedIn = false;
// LOGIN LOOP (3 ATTEMPTS)
while (!loggedIn) {
try {
System.out.print("Enter Username: ");
String u = sc.next();
System.out.print("Enter Password: ");
String p = sc.next();
if (user.login(u, p)) {
System.out.println("\nLogin Successful!\n");
loggedIn = true;
}
} catch (InvalidCredentialsException e) {
System.out.println("Login Error: " + e.getMessage());
if (user.isLocked()) {
System.out.println("Please contact bank support.");
sc.close();
return;
}
}
}
// MENU
int choice;
do {
System.out.println("\n===== ONLINE BANKING MENU =====");
System.out.println("1. Deposit");
System.out.println("2. Withdraw");
System.out.println("3. Check Balance");
System.out.println("4. Add Interest");
System.out.println("5. Exit");
System.out.print("Enter choice: ");
choice = sc.nextInt();
try {
switch (choice) {
case 1:
System.out.print("Enter amount to deposit: ");
service.deposit(sc.nextDouble());
break;
case 2:
System.out.print("Enter amount to withdraw: ");
service.withdraw(sc.nextDouble());
break;
case 3:
service.checkBalance();
break;
case 4:
account.calculateInterest();
break;
case 5:
System.out.println("Thank you for using Online Banking!");
break;
default:
System.out.println("Invalid choice!");
}
} catch (InsufficientBalanceException e) {
System.out.println("Transaction Error: " + e.getMessage());
} catch (Exception e) {
System.out.println("Invalid input!");
sc.nextLine(); // clear buffer
}
} while (choice != 5);
sc.close();
System.out.println("\nSession Ended.");
}
}