Het Facade pattern biedt een vereenvoudigde interface voor een complex subsysteem — verbergend zijn complexiteit achter een enkele, schone entry point. Het maakt een ingewikkelde reeks componenten gemakkelijker te gebruiken, zonder toegang tot de onderliggende details te verwijderen.
Wat het Facade pattern doet
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
