-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccount.java
More file actions
66 lines (60 loc) · 1.79 KB
/
Copy pathAccount.java
File metadata and controls
66 lines (60 loc) · 1.79 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
public class Account {
private String accountId;
private String accountName;
private double balance ;
private String password;
// Constructor
public Account(String accountId, String accountName, String password, double balance) {
this.accountId = accountId;
this.accountName = accountName;
this.password = password;
this.balance = balance;
}
public Account(String accountId, String accountName, String password) {
this.accountId = accountId;
this.accountName = accountName;
this.password = password;
balance = 0.0;
}
public String getAccountId() {
return accountId;
}
public String getAccountName() {
return accountName;
}
public double getBalance() {
return balance;
}
public void setBalance(double balance) {
this.balance = balance;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public boolean checkPassword(String password) {
return this.password.equals(password);
}
public double credit(double ammount) {
if(ammount > 0) {
balance += ammount;}
else {
System.out.println(" balance can't be negative");
}
return balance;
}
public double debit(double ammount) {
if(ammount > 0 && balance >= ammount) {
balance -= ammount;}
else{
System.out.println("Insufficient Balance");
}
return balance;
}
@Override
public String toString() {
return "Account= \n id" + accountId + ", accountName=" + accountName + ", balance=" + balance;
}
}