13.07.2015 Views

Integrating Servlets and JSP: The Model View Controller - Java ...

Integrating Servlets and JSP: The Model View Controller - Java ...

Integrating Servlets and JSP: The Model View Controller - Java ...

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Bank Account Balances:Business Logic Interfacepublic interface CustomerLookupService {public Customer findCustomer(String id);}34Bank Account Balances:Business Logic Implementationpublic class CustomerSimpleMapimplements CustomerLookupService {private Map customers;public CustomerSimpleMap() {// Populate Map with some sample customers}35}public Customer findCustomer(String id) {if (id!=null) {return(customers.get(id.toLowerCase()));} else {return(null);}}…

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!