#89 Added Business Delegate pattern description to README.md

This commit is contained in:
Ilkka Seppala 2015-07-23 00:16:32 +03:00
parent e2af6dc229
commit 869c578fe3

View File

@ -81,6 +81,10 @@ Presentation Tier patterns are the top-most level of the application, this is co
* [Flux](#flux)
* [Front Controller](#front-controller)
### Business Tier Patterns
* [Business Delegate](#business-delegate)
### Architectural Patterns
An architectural pattern is a general, reusable solution to a commonly occurring problem in software architecture within a given context.
@ -685,6 +689,16 @@ validation and for building to order
**Real world examples:**
* [Spring Data](http://projects.spring.io/spring-data/)
## <a name="business-delegate">Business Delegate</a> [&#8593;](#list-of-design-patterns)
**Intent:** The Business Delegate pattern adds an abstraction layer between 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.
![alt text](https://github.com/iluwatar/java-design-patterns/blob/master/business-delegate/etc/business-delegate.png "Business Delegate")
**Applicability:** Use the Business Delegate pattern when
* you want loose couping between presentation and business tiers
* you want to orchestrate calls to multiple business services
* you want to encapsulate service lookups and service calls
# Frequently asked questions