Facade pattern poskytuje zjednodušené rozhraní ke komplexnímu subsystému — skrývá jeho složitost za jediným, čistým vstupním bodem. Usnadňuje používání komplikované sady součástí, aniž by se odebrala možnost přístupu k základním detailům.
Co Facade pattern dělá
FACADE → a SIMPLE interface in front of a COMPLEX subsystem:
→ the subsystem has many components/steps; the facade provides ONE easy interface
→ clients use the simple facade instead of dealing with the complexity directly
→ the facade coordinates the underlying components
→ HIDE complexity behind a clean, easy-to-use interface
