Files
java-design-patterns/business-delegate/index.md
T
Markus fbb12b53ba Work towards #56: Splitting up the README
I did the job and splitted up the readme, hopefully everything was
splitted correctly...
2015-08-13 23:54:40 +02:00

726 B

layout, title, folder, categories, tags
layout title folder categories tags
pattern Business Delegate business-delegate pattern_cat pattern_tag

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