Challenge: Proxy Pattern
In this challenge, you have to implement the proxy pattern to solve the given problem.
We'll cover the following...
We'll cover the following...
Problem statement
In this challenge, you have to implement a library kiosk. The LibraryKiosk
allows a student to perform two functions:
-
open
: allows the student to open an app in the kiosk -
connectTo
: allows the student to connect to a website
The definitions for both the functions are given to you. ...