Facade pattern pruža pojednostavljeni interfejs kompleksnom podsustavu — skrivajući njegovu kompleksnost iza jedne čiste ulazne točke. Čini komplicirani skup komponenti lakšim za korištenje, bez uklanjanja pristupa temeljnim detaljima.
Što Facade pattern čini
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
