Markus 5ce932ceb7 Work on #213
- properly categorize all patterns
- remove pattern list from readme
- minor fixes to readme
- removed "introduction" because its not a pattern and an error i
committed some time ago
2015-08-20 21:40:07 +02:00

762 B

layout, title, folder, permalink, categories, tags
layout title folder permalink categories tags
pattern Business Delegate business-delegate /patterns/business-delegate/ Business Tier Java

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

Applicability: Use the Business Delegate pattern when

  • you want loose coupling between presentation and business tiers
  • you want to orchestrate calls to multiple business services
  • you want to encapsulate service lookups and service calls