Facade
- Provide a unified interface to a set of interfaces in a subsystem. Facade
defines a higher-level interface that makes the subsystem easier to use.
- Facade : knows which subsystem classes are responsible for a
request. delegates client requests to appropriate subsystem objects.
- Subsystem Classes : implement subsystem functionality. handle work
assigned by the Facade object. have no knowledge of the facade; that is,
they keep no references to it.

- Clients communicate with the subsystem by sending requests to Facade,
which forwards them to the appropriate subsystem object(s). Although the
subsystem objects perform the actual work, the facade may have to do work of
its own to translate its interface to subsystem interfaces.
- Clients that use the facade don't have to access its subsystem objects
directly.
- you want to provide a simple interface to a complex subsystem.
Subsystems often get more complex as they evolve. Most patterns, when
applied, result in more and smaller classes. This makes the subsystem more
reusable and easier to customize, but it also becomes harder to use for
clients that don't need to customize it. A facade can provide a simple
default view of the subsystem that is good enough for most clients. Only
clients needing more customizability will need to look beyond the facade.
- there are many dependencies between clients and the implementation classes
of an abstraction. Introduce a facade to decouple the subsystem from clients
and other subsystems, thereby promoting subsystem independence and
portability.
- It shields clients from subsystem components, thereby reducing the
number of objects that clients deal with and making the subsystem easier to
use.
- It promotes weak coupling between the subsystem and its clients. Often the
components in a subsystem are strongly coupled. Weak coupling lets you vary
the components of the subsystem without affecting its clients. Facades help
layer a system and the dependencies between objects. They can eliminate
complex or circular dependencies. This can be an important consequence when
the client and the subsystem are implemented independently.
- It doesn't prevent applications from using subsystem classes if they need
to. Thus you can choose between ease of use and generality.