summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/simple-bigbank-spring/src/main/java/bigbank/account/AccountServiceImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.x/samples/simple-bigbank-spring/src/main/java/bigbank/account/AccountServiceImpl.java')
-rw-r--r--branches/sca-java-1.x/samples/simple-bigbank-spring/src/main/java/bigbank/account/AccountServiceImpl.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/branches/sca-java-1.x/samples/simple-bigbank-spring/src/main/java/bigbank/account/AccountServiceImpl.java b/branches/sca-java-1.x/samples/simple-bigbank-spring/src/main/java/bigbank/account/AccountServiceImpl.java
index 8c1e536a4d..be02087c7d 100644
--- a/branches/sca-java-1.x/samples/simple-bigbank-spring/src/main/java/bigbank/account/AccountServiceImpl.java
+++ b/branches/sca-java-1.x/samples/simple-bigbank-spring/src/main/java/bigbank/account/AccountServiceImpl.java
@@ -47,10 +47,10 @@ public class AccountServiceImpl implements AccountService {
private String currency;
- /*public AccountServiceImpl(SavingsAccountService savingsAccountService, StockAccountService stockAccountService) {
+ public AccountServiceImpl(SavingsAccountService savingsAccountService, StockAccountService stockAccountService) {
this.savingsAccountService = savingsAccountService;
this.stockAccountService = stockAccountService;
- }*/
+ }
public AccountReport getAccountReport(String customerID) {
@@ -97,13 +97,13 @@ public class AccountServiceImpl implements AccountService {
}
}
- public SavingsAccountService getSavingsAccountService() {
+ /*public SavingsAccountService getSavingsAccountService() {
return savingsAccountService;
}
public void setSavingsAccountService(SavingsAccountService savingsAccountService) {
this.savingsAccountService = savingsAccountService;
- }
+ }*/
public CheckingAccountService getCheckingAccountService() {
return checkingAccountService;
@@ -113,13 +113,13 @@ public class AccountServiceImpl implements AccountService {
this.checkingAccountService = checkingAccountService;
}
- public StockAccountService getStockAccountService() {
+ /*public StockAccountService getStockAccountService() {
return stockAccountService;
}
public void setStockAccountService(StockAccountService stockAccountService) {
this.stockAccountService = stockAccountService;
- }
+ }*/
public String getCurrency() {
return currency;