2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
layout: pattern
|
|
|
|
title: Business Delegate
|
|
|
|
folder: business-delegate
|
2015-08-15 18:03:05 +02:00
|
|
|
permalink: /patterns/business-delegate/
|
2015-08-20 21:40:07 +02:00
|
|
|
categories: Business Tier
|
2015-12-28 15:52:44 +02:00
|
|
|
tags:
|
|
|
|
- Java
|
|
|
|
- Difficulty-Intermediate
|
2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Intent
|
|
|
|
The Business Delegate pattern adds an abstraction layer between
|
2015-08-13 23:54:40 +02:00
|
|
|
presentation and business tiers. By using the pattern we gain loose coupling
|
|
|
|
between the tiers and encapsulate knowledge about how to locate, connect to,
|
|
|
|
and interact with the business objects that make up the application.
|
|
|
|
|
|
|
|

|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Applicability
|
|
|
|
Use the Business Delegate pattern when
|
2015-08-13 23:54:40 +02:00
|
|
|
|
|
|
|
* you want loose coupling between presentation and business tiers
|
|
|
|
* you want to orchestrate calls to multiple business services
|
2015-08-15 18:03:05 +02:00
|
|
|
* you want to encapsulate service lookups and service calls
|
2016-01-27 12:55:59 +05:30
|
|
|
|
|
|
|
##Credits
|
|
|
|
* [J2EE Design Patterns](http://www.amazon.com/J2EE-Design-Patterns-William-Crawford/dp/0596004273/ref=sr_1_2)
|