I am new to spring!!
I have got the source code of spring recipes book by gary mark.
In an application of bank I am trying to alter the Account class, AccountService interface and the AccountServiceImpl class to allow the setting of a credit limit on accounts and for withdrawals to be allowed up to that credit limit.
Plus I have to Alter the
JUnit test in AccountServiceTests to test this new functionality.
How can I do this?
The original files are as under:
Account.java