Proxy Design Pattern
Proxy Design Pattern
What ?
A proxy is a class, functioning as an
interface to another class that has
the same interface as the proxy.
Structural Design Pattern
Why ?
Security Reasons
Controlled access
Intelligent access
Protects real component
Optimizes Performance
Connecting with remote machine is easy
Simplifies API of complex objects
How ?