Java / Design Patterns
Explain Proxy design pattern in Java.
Proxy design pattern, a structural pattern, states "that Allows for object level access control by acting as a pass through entity or a placeholder object. "
This pattern is recommended when,
- Objects need to be created on demand.
- Access control for the original object is required,
- Added functionality is required when an object is accessed.
More Related questions...